写出程序的输出结果()s='The pyhton language is a cross platform language.'print(s.find('language',30))
查看答案
字典 d = { 'abc' : 1 , 'def' : 2 , 'ghi' : 3 },len(d) 的结果是()
写出程序的输出结果()x=10y=3print(divmod(x,y))
写出下列程序的运行结果i = 37print(bin(i))print(oct(i))print(hex(i))
列表 ls=['a','b','c','d'] ,执行切片操作ls[0:2],输出____。