Skip to content

Instantly share code, notes, and snippets.

@muthu1809
Created January 31, 2022 11:51
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 muthu1809/1ba524458fb7716bbdb73dfda3e60eb3 to your computer and use it in GitHub Desktop.
Save muthu1809/1ba524458fb7716bbdb73dfda3e60eb3 to your computer and use it in GitHub Desktop.
count = 1 #1. முதலில் மனத்தில் இருக்கும் countஇன் மதிப்பு 1
while count<=5: #2. countஇன் மதிப்பு ஐந்துக்குக் கீழ் இருக்கும் வரை:
print(1) #3. 1 என அச்சிடுக.
count+=1 #4. countஉடன் ஒன்று கூட்டிக் கொள்க.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment