0
Just started out python.. was wondering how or with what code I can create an input box
2 ответов
+ 2
In Module "Going Deeper with Python" you will learn about input and outputs.
0
Maybe do something like
num = int(input("Enter a number:\t"))
print("Your entered: ", num)
This code, at first, prompts you to write a number, then prints that to the screen.