Quick actions

cmd+k|ctrl+k

Navigation

Languages

loops

Snippet info

Language

Python

Visibility

public

Author

sanskrutinaik2631

Created

2026-05-21T04:53:10.691881Z

Updated

2026-05-21T04:53:10.691881Z

is_old=True
is_licence=True
if is_old and is_licence:
    print('you are old enough!')
else:
    print('you are not of age!')
print('ok')
INFO