Skip to content

Instantly share code, notes, and snippets.

@rdnasim
Last active February 2, 2018 11:21
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/8042dcceec705bc77b458fdb5b08e394 to your computer and use it in GitHub Desktop.
Save rdnasim/8042dcceec705bc77b458fdb5b08e394 to your computer and use it in GitHub Desktop.
"If" ব্যাবহার করা হয় সে সকল স্টেটমেন্ট এর ক্ষেত্রে যেখানে True or False এর এক্সপ্রেসন থাকে । যদি এটা সত্য হয় তাহলে "if" স্টেটমেন্ট এর মধ্যে কাজ করে । উদাহরন হিসাবে দেখা যেতে পারে । "2 is greater than 1" , তাই "print" code is executed.
if True:
print("Hello Python If")
if 2 > 1:
print("2 is greater than 1")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment