A. 对 B. 错
A. print("May the odds favor you") B. input("May the odds favor you") C. echo("May the odds favor you") D. printf("May the odds favor you")
A. int a = 22.6 B. a = 22.6 C. integer a = 22.6 D. 以上都不对
A. /*This is comment*/ B. !!This is comment C. //This is comment D. E. This is comment
A. 2.615e8 B. 261500000 C. 261.5e8 D. 2.6
A. 3+2j B. -100j C. 5j D. 以上都对
A. lowercase() B. capitalize() C. lower() D. toLower()
A. str1[11:16] B. str1(11:16) C. str1[11][16] D. str[11-16]
A. [:] B. [] C. [: -1] D. 以上都不对