Skip to content

Instantly share code, notes, and snippets.

@rdnasim
Last active February 2, 2018 11:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdnasim/17dd90c1b1bb886dd68b87dd4ac45d00 to your computer and use it in GitHub Desktop.
Save rdnasim/17dd90c1b1bb886dd68b87dd4ac45d00 to your computer and use it in GitHub Desktop.
"else" স্টেটমেন্ট ঠিক তখনই কার্যকর হবে যখন "if" স্টেটমেন্ট মিথ্যা হবে । "1 is not greater than 2", তাই কোড এর মধ্যে "else" স্টেটমেন্টটা কার্যকর হবে ।
if 1 > 2:
print("1 is greater than 2")
else:
print("1 is not greater than 2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment