79802975

Date: 2025-10-28 15:16:55
Score: 1
Natty:
Report link

string = input('Input your string : ')
string = string.replace(' ','')                 # removing every whitespace in string
print(f'Your original string is {string}')
string = list(string)
for i in string[0::2]:
    print(i)
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Meissam Khatami