A Simple For Loop to Display "Hello World!" A number of Times

Описание к видео A Simple For Loop to Display "Hello World!" A number of Times

A Simple For Loop to Display "Hello World!" A number of Times
#shorts

range(6) Will display 0-5 since array starts with first element at index 0 so if you want 0-6 use range(7) and so on. However if you wantvto count start with index 1, Use range(1,6) which displays 1-5 6 not included.
range(start-number,end-number, steps)

Комментарии

Информация по комментариям в разработке