Open main menu

CDOT Wiki β

Changes

OPS245 Scripting Exercises dev

1 byte added, 15:22, 14 January 2023
Python user input
Prompt the user to input their name and store it in the variable name, using the input function:
<pre>
name = input("Please enter your name:")
</pre>