Files
Buffteks-Website/webpages/input_code.py
2024-09-12 07:31:31 -05:00

10 lines
239 B
Python

# Example 1
Age = 24;
if Age >=18:
print('You are an adult')
# Example 2
has_license = False
if has_license == True: # False == True-> Flase
print('You can drive')
print('False condition, skip the if statement')