“Параметры диапазона Python” Ответ

Диапазон Python Start с 1

>>> def range1(start, end):
...     return range(start, end+1)
...
>>> range1(1, 10)
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
Homely Hummingbird

Параметры диапазона Python

arr_data=[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20] 
user = int(input("Enter the product of numbers: ")) 
for i in range(0,20,1): 
    a = arr_data[i] 
    for t in range(0,20,1): 
        b = arr_data[t] 
        if (a*b) == user: 
            print(a,"x",b,"=",user) 
        else: 
            pass 
TanCodes

Диапазон в Python

range(inclusive, exclusive)
range(0, 3) # 0, 1, 2
Defiant Dog

итерация

#itration 
a,b=4,5
for i in [1,2]:
    print(a,b,i)
    a+=1
    b-=1
#output:
4 5 1
5 4 2
Gr@Y_orphan_ViLL@in##

Ответы похожие на “Параметры диапазона Python”

Вопросы похожие на “Параметры диапазона Python”

Больше похожих ответов на “Параметры диапазона Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования