Answers for "for loop from 1 to n in python"

1

python for loop m to n

for i in range (m,n+1):
    s += i
    print(i)

print(s)
Posted by: Guest on May-09-2021
17

for in python

for i in range(1,10,2): #(initial,final but not included,gap)
  print(i); 
  #output: 1,3,5,7,9
  
for i in range (1,4): # (initial, final but not included)
  print(i);
  #output: 1,2,3 note: 4 not included

for i in range (5):
  print (i);
  #output: 0,1,2,3,4 note: 5 not included

python = ["ml","ai","dl"];  
for i in python:
  print(i);
  #output:  ml,ai,dl
  
for i in range(1,5):	#empty loop...if pass not used then it will return error
  pass;
Posted by: Guest on May-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language