A. myexample = {'someItem'=>2, 'otherItem'=>20} B. myexample = {'someItem':2, 'otherItem':20} C. myexample = ('someItem'=>2, 'otherItem'=>20) D. myexample = ('someItem'=>2, 'otherItem'=>20)
A. int(x [,base]) B. long(x [,base]) C. float(x) D. str(x)
A. if a >= 22: B. if (a >= 22) C. if (a => 22) D. if a >= 22
A. else if B. elseif C. elif D. 以上都不是
A. def someFunction(): B. function someFunction() C. def someFunction() D. function someFunction():