How many letters 'a' will be printed after this code is executed?
i = 0
a = 'a'
while i < 8:
a *= 2
i += 1
print(a)How many letters 'a' will be printed after this code is executed?
i = 0
a = 'a'
while i < 8:
a *= 2
i += 1
print(a)Create a free account to access the full topic