6 lines
77 B
Plaintext
6 lines
77 B
Plaintext
#While Statement Test
|
|
i = 0
|
|
while i < 10:
|
|
print("**********")
|
|
i += 1
|