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/bff5260e23abf3aba2cb082ffe151a3f to your computer and use it in GitHub Desktop.
Save rdnasim/bff5260e23abf3aba2cb082ffe151a3f to your computer and use it in GitHub Desktop.
while লুপিং ঃ যখন স্টেটমেন্টটি সত্য - তখন ব্লকের ভিতরে কোডটি চলবে এবং ঘটনাটি সত্য বলে বিবেচিত হবে । সুতরাং নিচের কোডটিতে ১ থেকে ১০ পর্যন্ত লিখে দেখাবে । দেখি কি হয় ?
num = 1
while num <= 10:
print(num)
num += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment