更多Python语言基础试题
- 1下列语句中,( )在Pyhon中是非法的。
- 2以下选项不属于 Python 整数类型的是( )。
- 3下列选项中可以获取Python 整数类型帮助的是
- 4字符串也属于序列,可以通过索引访问。下列代码的输出结果为( )。word = 蒹葭苍苍,白露为霜。所谓伊人,在水一方。print(word.index("蒹葭苍苍,白露为霜。"))print(word.index("蒹葭萋萋,白露未晞。"))
- 5题目:暂停一秒输出。 ''' 暂停以秒输入 ''' import time myD = {1:'a', 2:'b', 3:'c', 4:'d', 5:'e', 6:'f', 7:'g'} for key,value in dict.items(myD): print(key,value) ___________________#暂停一秒