for i in range (5, 0, -1):
print (i)
On Sun, Nov 15, 2020, 8:22 PM MAHA RAJA <mmrajan2001@gmail.com> wrote:
ordered printi=1while (i>=5){print (i)i=i+1}unordered printi=5while (i<=1){print (i)i=i-1}--On Sun, 15 Nov 2020, 10:39 pm Derek <gamesbook@gmail.com wrote:You can also use range;>>> for i in range(0, 5):... print(i + 1)...12345>>>or in reverse:>>> for i in range(5, 0, -1):... print(i)...54321>>>--On Saturday, 14 November 2020 at 21:26:04 UTC+2 vicker...@gmail.com wrote:Python has the enumerate function for these situations.for i, item in enumerate(items):#your print statement here'i' will give you the index of the list/iterable, and item will give you the item.On Sat, 14 Nov 2020 at 11:57, paidjoo indo <leoa...@gmail.com> wrote:Hello I'm newbie in python, I'm learning looping in python, how to print like in bellow;Input:5123452. 43 34 254321Thanks guys--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAO%3D2VJmeOF5SyMZUFox_hHivTr%3DE%3Dnekj_n7FLOYjGOkPHQrbA%40mail.gmail.com.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/281ee4c1-23bb-4eb2-a8d3-a9bc1a13e078n%40googlegroups.com.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAJhiZB5SR_iyZPeCfBJ8pxs2MR00rWFOSFmprE1y_57Po4rS_w%40mail.gmail.com.
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CANyXpoou%2Bhj-A%3D5WHpcD6fL%3Dpz79SrmcUwU-QBuPuW_KUY%2BE%3Dg%40mail.gmail.com.
No comments:
Post a Comment