Last active
February 2, 2018 11:20
-
-
Save rdnasim/17dd90c1b1bb886dd68b87dd4ac45d00 to your computer and use it in GitHub Desktop.
"else" স্টেটমেন্ট ঠিক তখনই কার্যকর হবে যখন "if" স্টেটমেন্ট মিথ্যা হবে । "1 is not greater than 2", তাই কোড এর মধ্যে "else" স্টেটমেন্টটা কার্যকর হবে ।
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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