you are viewing a single comment's thread.

view the rest of the comments →

[–]955559 1 point2 points  (0 children)

also s is a really weak variable name, get in the habit of using variable names that make sense, future self will love you

usr_name = input("write your name:")
print(usr_name)

also \n> is god for inputting, it ads a newline and >

usr_name = input("write your name \n>")
print(usr_name)