I read the article
PEP 3111 Simple input built-in in Python 3000, and I tried to use a code similar to:
import sys
print("What is your name?")
name = sys.stdin.readline()
but it didn't work the script didn't stop to wait for the information that it is needed. How do we solve this problem? I mean how data can be entered to python 3.9. I run the command input() in the terminal in Mac and It works perfectly but not in the Spyder's console.