[solved] – Question 91182
1. What gets printed?
while a = 10:
print(‘Howdy’)
2. What is printed by the python code?
Print 14/4, 14%4, 14.0/4
3. What is printed by the python code?
print ‘2’ + ‘3’
4. What is printed by the Python code?
for i in range(4):
print (i)
5. Given a string s, write a short expression for a string that includes s repeated five times.
Expert Answer
OR

