Answers for "pythong range"

2

python range

range(1, 100) # --> prints 1 through 99 numbers
Posted by: Guest on February-22-2022
3

iteration

#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
Posted by: Guest on December-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language