close

How to write one line for loop in python

Hello guys. How are you all? I hope you all fine. In this tutorial we will learn about how to write one line for loop in python. so without wasting time lets learn about of this.

How to write one line for loop in python

  1. one line for loop in python

    to one line for loop in python Use this method. This is the simple method for one line. So lets learn about of this without wasting time by given below example: for number in range(1, 4): print(number) Output : 1 2 3

  2. How to write one line for loop in python

    to one line for loop in python use this method. Lets learn for loop one line with list. lets learn about of this without wasting time by given below example: mylist = ["a", "v", "s", "h"] for i in mylist: print(i) Output : a v s h

  3. python one line for loop

    To one line for loop in python Use this method. This is the simple method for one line. So lets learn about of this without wasting time by given below example: for number in range(1, 4): print(number) Output : 1 2 3

Method 1: One line for loop

This is the simple method for one line. So lets learn about of this without wasting time by given below example:

for number in range(1, 4):
   print(number)

Output :

1
2
3

Method 2:

Lets learn for loop one line with list. lets learn about of this without wasting time by given below example:

mylist = ["a", "v", "s", "h"]
for i in mylist:
   print(i)

Output :

a
v
s
h

Conclusion

It’s all About this Tutorial. Hope all methods helped you a lot. Comment below Your thoughts and your queries. Also, Comment below which method worked for you?

Also, Read

Leave a Comment