已知a值为5, b序列[1,2,3.4].执行下列语句后,运行结果为()。 a=5 b = [1,2,3,4] if a in b: print("python") else: print("hello")
A: python
B: hello
C: False
D: True
A: python
B: hello
C: False
D: True
举一反三
- Python中,语句“>>> 3 [ 5 ] 2”的结果是()。 A: False B: True C: 0 D: 1
- 下列 Python语句的程序运行结果为list1=[1,2,3];list2=[3,4,5];dict1={'1':list1,'2':list2};dict2=dict1.copy()dict1['1'][0]=15; print(dict1['1'][0]+dict2['1'][0])
- 执行下列Python语句后的显示结果是。 i=1 if(i): print(True) else: print(False)
- 下列Python语句的运行结果是()。nums=set([1,2,2,3,3,3,4])print(len(nums)) A: 1 B: 2 C: 3 D: 4
- Python语句s1=[1,2,3,4];s2=[5,6,7]; print(s1+s2)的运行结果是_________。