Computer Science
How many times will the following for loop execute and what's the output?
for i in range(-1, 7, -2):
for j in range (3):
print(1, j)
Related Questions
Predict the output of the following code fragments:
x ='apple, pear, peach, grapefruit' y = x.split(', ') for z in y: if z < 'm': print(str.lower(z)) else: print(str.upper(z))
Which of the following is the correct output for the execution of the following Python statement ?
print(5 + 3 ** 2 / 2)
- 32
- 8.0
- 9.5
- 32.0
How many times will the following for loop execute and what's the output?
for i in range(1,3,1): for j in range(i+1): print('*')
Find and write the output of the following python code:
for Name in ['Jay', 'Riya', 'Tanu', 'Anil'] : print (Name) if Name[0] == 'T' : break else : print ('Finished!') print ('Got it!')