Skip to content

Instantly share code, notes, and snippets.

@rdnasim
Last active February 2, 2018 11:19
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/363d4d5b2ae91fe851fdc07d0239652a to your computer and use it in GitHub Desktop.
Save rdnasim/363d4d5b2ae91fe851fdc07d0239652a to your computer and use it in GitHub Desktop.
আমরা এবার "elif" স্টেটমেন্টও ব্যাবহার করতে পারি । যেমন - নিচের কোড গুলা দেখো তাহলে ভালো ধারনা হবে । 
if 1 > 2:
print("1 is greater than 2")
elif 2 > 1:
print("1 is not greater than 2")
else:
print("1 is equal to 2")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment