Last active
February 2, 2018 11:21
-
-
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.
This file contains 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 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