Hello everyone,
Im starting with Python on Sublime and I was following a tutorial that makes the user input a greeting, such as “Hello”
greeting = input("write a greeting: ")
print(greeting)
When I build the program, “Write a greeting” appears and I type “Hi” but then nothing happens.
What should happen is that “Hi” should be printed.
What I am doing wrong?