Hi!
Using Git Bash, i'm just starting to learn Python.
Here is the simple program:
name = input ("What's Your Name: ")
print(f"Hello {name}")
When I run it, the program ask "What's Your Name: ", but when I push "Enter" after entering it, it just make a new line and never print Hello on the screen. It's like Enter key don't make the program go to the next line of code...
It work fine in Windows PowerShell.