mirror of
https://github.com/codecrafters-io/build-your-own-x
synced 2026-07-03 01:09:25 +00:00
5 lines
119 B
Python
5 lines
119 B
Python
a=str(input)
|
|
print("hey enter a string as your own =")
|
|
for h in a:
|
|
print h
|
|
print("Thanks for entering a string!!")
|