Quick actions

cmd+k|ctrl+k

Navigation

Languages

Conditional Logic

Snippet info

Language

Python

Visibility

public

Author

harshdeepsaini2757

Created

2025-11-08T22:07:55.234884Z

Updated

2025-11-08T22:07:55.234884Z

# Conditional Logic

is_old = True
is_licenced = True

if is_old and is_licenced:
    print('you are old enough yo drive!')
else:
    print('check')
    
print('okkkkk')
    
    
    
    
    



























INFO