Arama Sonuçları: "#Python_quiz"

12 sonuç
Python
Python@Python_quiz·
x=1 for i in range (3): for j in range (i): x+=1 print(x) —————————— A- 1 B- 2 C- 3 D- 4 #Python_quiz
Python tweet media
Dansk
7
1
3
0
Python
Python@Python_quiz·
x = {0:'a',1:'b',2:'c'} for i in x.keys : print(i) —————————— A- 0 1 2 B- a b c C- Error D- None #Python_quiz
Python tweet media
English
7
3
10
0
Python
Python@Python_quiz·
x=0 for i in range(2): for j in range(2): if i != j : x=x+1 x=x-2 print(x) —————————— A- 4 B- -4 C- 2 D- -2 #Python_quiz
Python tweet media
English
16
7
45
0
Python
Python@Python_quiz·
x=15 if True: x=25 if False: x=45 print(x) ——————- A- 15 B- 25 C- 45 D- None #Python_quiz
Python tweet media
English
16
6
23
0
Python
Python@Python_quiz·
x = str(3)=="3" y = int(3)==3 z = float(3)==3.0 print(x) print(y) print(z) ————————— A- False True True B- All False C- All True D- None #Python_quiz
Python tweet media
English
17
2
12
0
Python
Python@Python_quiz·
if 5 > 2: print("Python") print("quiz") ————————- A- Python B- quiz C- Python quiz D- Error #Python_quiz
Python tweet media
Français
7
3
10
0
Python
Python@Python_quiz·
x= "Python_quiz" y= ("Python_quiz") z=x==y print(z) —————————— A- Python_quiz B- True C- False D- Error #Python_quiz #Python
Python tweet media
CY
9
2
9
0
Python
Python@Python_quiz·
try: print(Python_quiz) except: print("Err") —————————— A- Python_quiz B- Error C- Err D- None #Python_quiz
Python tweet media
Français
6
2
10
0
Python
Python@Python_quiz·
x=[1,2,3,4] x.remove(2) x.pop(1) del x[1] print(x) ——————— A- [1] B- [2] C- [3] D- [4] #Python_quiz
Python tweet media
English
4
3
12
0
Python
Python@Python_quiz·
x=[1,2,3] x.append(4) x.insert(2,4) x.extend([5,6]) print(x) ————————— A- [1,2,3,4,2,4,5,6] B- [1,2,4,3,4,6] C- [1, 2, 4, 3, 4, 5, 6] D- None #Python_quiz
Python tweet media
English
6
4
4
0
Python
Python@Python_quiz·
x=[1,2,3,4,5,6] x.clear() x.append(7) print(x) ———————— A- [1,2,3,4,5,7] B- [7,2,3,4,5,6] D- [7] C- None #Python_quiz
Python tweet media
English
7
2
6
0
Python
Python@Python_quiz·
x = '012' y = len(x) z =0 for i in x: y=y-1 z=z+int(i)*y print(z) ——————————— A- 1 B- 2 C- 3 D- 4 #Python_quiz
Python tweet media
Čeština
6
3
6
0