So first i clicked on Run Module
Then this came up
My code
import time
print("First we need to know you.")
print("Enter your name please.")
time.sleep(2)
name = input("Name: ")
print("Welcome, " + name + "!")
time.sleep(3)
criminal = input("Are you a criminal?: ")
if criminal=='Y':
Right here it highlights print as red
print('Oh no')
elif criminal=='N':
print('Thank god!')

