13,420
edits
Changes
→PART 1 - USER INPUT
:#Try running this script inside ipython3 and study the output:<source>
run lab2a.py
</source><br>This Python script is not very useful: it displays shows the same output regardless of the number of times every time that the Python script it is runexecuted.<br>The '''input()''' function is used to obtain information from the user and store it into a variable. It is recommended to place a question (or hint) as a argument in the input() function: this will aid the user in typing in the correct information.<br><br>
:#Return to your '''ipython3''' shell, edit the lab2a.py file and add the following code: <source>
colour = input("Type in a colour and press enter: ")