Untitled

mail@pastecode.io avatarunknown
plain_text
22 days ago
197 B
1
Indexable
Never
# Online Python compiler (interpreter) to run Python online.
# Write Python 3 code in this online editor and run it.
print("Hello world")

str = ''
for i in range(0,5):
    str += '1 '

print (str)