函数print(“圆周率是:{:.4f}”.format(3.1415926))的执行结果是( )。
A. 圆周率是:3.1415
B. 圆周率是:3.1416
C. 圆周率是:3.141
D. 圆周率是:3.142
假设i在range(1,5)内取值,则i的可能取值是()。
A. 1
B. 5
C. [1,2,3,4,5]
D. [1,2,3,4]
下面不符合Python语言命名规则的是()。
A. python123
B. python_123
C. _python123
D. 123python
假设有字符串str="Hello-World”,提取子串"Hello”的正确做法是( )。
A. str[1:5]
B. str[1:6]
C. str[0:4]
D. str[0:-6]