Quick actions

cmd+k|ctrl+k

Navigation

Languages

If elif else

Snippet info

Language

Python

Visibility

public

Author

dharmendrarah

Created

2023-01-07T18:43:50.801173Z

Updated

2023-01-07T18:43:50.801173Z


is_old=False

is_licenced=False

if is_old:
    print("You are at age to drive")
elif is_licenced:
    print("You are ready to drive")
else:
    print("Don't waste your time")
INFO