Answers for "with loop python"

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
1

python for loop handle

f = open("demofile.txt", "r")
for x in f:
    print(x)
#will print the whole content of the file.
Posted by: Guest on September-13-2021
9

python for loop

#to print number from 1 to 10
for i in range(1,11):
    print(i)

#to print a list
l = [1,2,3,4]
for i in l:
    print(i)

r = ["a","b","c","d","e"]
s = [1,2,3,4,5]

#print two list with the help of zip function
for p,q in zip(r,s):
    print(p,q)
Posted by: Guest on December-04-2020
7

python for loop

nums = ['one', 'two', 'three']
for elem in nums:
  print(elem)
Posted by: Guest on April-25-2020
1

how to make a loop in python

x = 0
while True: #execute forever
	x = x + 1
	print(x)
Posted by: Guest on November-09-2020

Python Answers by Framework

Browse Popular Code Answers by Language