9.Which numbers are printed?
for i in range(2):
print(1)
print()
for i in range(4,6):
10. What gets printed with the following
code ?
X = True
y = False
Z = False
if x ory and z:
print("yes")
else:
print ("no")
print (0)
Answers
Answered by
0
Answer:
Answer of question 9
1 and then a blank line..
Answer of question 10
no
0
Similar questions