Skip to content

Instantly share code, notes, and snippets.

@rdnasim
Created February 2, 2018 11:33
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/774fe75b3dbbdfb67d98259d5276043e to your computer and use it in GitHub Desktop.
Save rdnasim/774fe75b3dbbdfb67d98259d5276043e to your computer and use it in GitHub Desktop.
আমরা অন্য আরেকটি সাধারন কোড দেখলে ভালো ধারনা আসবে বলে আশা করছি । এই লুপ কন্ডিশান True । তাই যতক্ষন না পর্যন্ত আমরা সেট করছি তার ভেলু হিসাবে False ।
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