A
Q. How many times “Hello” will print
Code:
s=0
L = [2, 4, 6, 8, 10]
for i in range(len(L)-1):
print("Hello")
print("Hello")
L = [2, 4, 6, 8, 10]
for i in range(len(L)-1):
print("Hello")
print("Hello")
- Correct Answer - Option(C)
- Views: 28
- Filed under category Python
- Hashtags:
Discusssion
Login to discuss.