Gallery
Solution Tyre Pressure
Share
Explore
Solution Tyre Pressure

icon picker
Python Starter Code

Copy and paste the code below into your main.py file before you begin the task.
# blank line
print('\n')
# INPUT

# read value, convert data type, assign to a variable
tyrePressure = int(input('Please enter the tyre pressure: '))

# PROCESS and OUTPUT
# condition: 'the tyre pressure is 7' is it a true statement
if tyrePressure == 7 :
# conditional message output
print('OK, the tyre pressure is correct')
#end if
Share
 
Want to print your doc?
This is not the way.
Try clicking the ⋯ next to your doc name or using a keyboard shortcut (
CtrlP
) instead.