Created
February 2, 2018 11:33
-
-
Save rdnasim/774fe75b3dbbdfb67d98259d5276043e to your computer and use it in GitHub Desktop.
আমরা অন্য আরেকটি সাধারন কোড দেখলে ভালো ধারনা আসবে বলে আশা করছি । এই লুপ কন্ডিশান True । তাই যতক্ষন না পর্যন্ত আমরা সেট করছি তার ভেলু হিসাবে False ।
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
loop_condition = True | |
while loop_condition: | |
print("Loop Condition keeps: %s" %(loop_condition)) | |
loop_condition = False |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment