Answers for "for loop in python3"

74

python loops

#x starts at 1 and goes up to 80 @ intervals of 2
for x in range(1, 80, 2):
  print(x)
Posted by: Guest on January-19-2020
4

python loop

# A loop is used to iterate over a sequence
# The format of a loop is
for variable in object:
  pass

# A common use of a for loop is using the range() function
for num in range(1, 10):
  print(num)
  
# It can also be used with a list
new_list = ["Number 1", "Number 2", "Number 3", "Number 4"]
for x in new_list:
  print(x)
Posted by: Guest on April-27-2021
1

python for loop

# Python for loop

for i in range(1, 101):
  # i is automatically equals to 0 if has no mention before
  # range(1, 101) is making the loop 100 times (range(1, 151) will make it to loop 150 times)
  print(i) # prints the number of i (equals to the loop number)
  
for x in [1, 2, 3, 4, 5]:
  # it will loop the length of the list (in that case 5 times)
  print(x) # prints the item in the index of the list that the loop is currently on
Posted by: Guest on January-09-2021
2

python for loop

for i in range(5, 9):
  print(i)
Posted by: Guest on November-29-2020
1

python for loop

# defining initial variables
num1 = 1
num2 = 10
# Using range() for the looping
for i in range(num1, num2):
  	# printing iterated variable
    print(i)

# Using for loop to print data in dictionary
varname = [1,2,3,4]
for x in varname:
    print(a)
    
# printing double lists with help of zip
lz1 = ["a", "b", "c"]
lz2 = [1, 2, 3]

#print two list with the help of zip function
for y,z in zip(lz1,lz2):
    print(y,z)
Posted by: Guest on December-30-2020
2

for loop example python 3

for num in nums:
     for letter in 'abs':
         print(num, letter)
Posted by: Guest on April-13-2020

Python Answers by Framework

Browse Popular Code Answers by Language