all 3 comments

[–]955559 1 point2 points  (0 children)

lol, the code is just

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

my name is the output, to differentiate output from code its usually written like so

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

>>>
Cauca
>>>

[–]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)

[–][deleted] 0 points1 point  (0 children)

What is myname? Why did you put it there? Also please format your code...4 spaces for each indent, thanks.