Files
Learn-Python-Programming-Th…/ch03/conditional.2.py
T
adii1823 8b802c5c62 ch03
2021-10-28 17:34:45 +05:30

6 lines
119 B
Python

late = False
if late:
print('I need to call my manager!') #1
else:
print('no need to call my manager...') #2