[solved] How to use for loop and if statement in one line?? | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 25

[solved] How to use for loop and if statement in one line??

For example: for i in range(10): if i % 2 == 0: i += 1 else: i -= 1 I can make if and else statements in one line but I don't know how to add for loop too in the line... PLEASE HELP🙏🙏

8th Jun 2020, 2:10 PM
Namit Jain
Namit Jain - avatar
32 Antworten
+ 18
print( [((i+100,i)[i%2],i-100)[i>=5] for i in range(10)])
8th Jun 2020, 3:37 PM
Louis
Louis - avatar
+ 16
Here is a one-liner, that creates the same result as your code: print([i+1 if i % 2 == 0 else i - 1 for i in range(10)])
8th Jun 2020, 2:54 PM
Lothar
Lothar - avatar
+ 14
as function for i in range(10): i += (-1) **((i+1)%2) I
8th Jun 2020, 3:04 PM
Oma Falk
Oma Falk - avatar
+ 9
This simple but powerful tutorial by HonFu changed the way I see for loops. Do check it out and go through it. https://code.sololearn.com/ck6HicJ6Z8jG/?ref=app
8th Jun 2020, 11:25 PM
Tomiwa Joseph
Tomiwa Joseph - avatar
8th Jun 2020, 4:03 PM
Namit Jain
Namit Jain - avatar
+ 5
a=[i+1 if i%2==0 else i-1 for i in range(10)] print (a) For loop and if else statements written in one line using list comprehension methods
9th Jun 2020, 12:39 PM
Runtime Terror
Runtime Terror - avatar
+ 4
RKK Thank you so much🙏... But I was not asking for that
8th Jun 2020, 2:24 PM
Namit Jain
Namit Jain - avatar
9th Jun 2020, 10:44 AM
Namit Jain
Namit Jain - avatar
+ 3
Hell yeah list comprehensions, as well as dictionary and generator ones
9th Jun 2020, 3:01 AM
Michael David
Michael David - avatar
+ 3
Kiibo Ghayal oll
10th Jun 2020, 10:14 AM
Ritik Sharma
+ 3
X = [i += 1 for i in range(10) if i%2 == 0 else i -= 1] print(x)
10th Jun 2020, 1:16 PM
Kuldeep k
Kuldeep k - avatar
+ 2
RKK Thank you so much But still I am unable to assign values
8th Jun 2020, 3:28 PM
Namit Jain
Namit Jain - avatar
+ 2
Thank you so much 𝐊𝐢𝐢𝐛𝐨 𝐆𝐡𝐚𝐲𝐚𝐥, now I am able to make it... Without any error Louis thank you for your concern but I am not able to understand your code as there are no if conditions
8th Jun 2020, 3:38 PM
Namit Jain
Namit Jain - avatar
+ 2
for i in range(10):i += 1 if i %2==0 else -1
9th Jun 2020, 4:21 PM
dileep
dileep - avatar
+ 2
Use list comprehensions or lambda functions
9th Jun 2020, 6:51 PM
Aaditya Jaiswal
Aaditya Jaiswal - avatar
+ 2
print([i+1 if i % 2 == 0 else i - 1 for i in range(10)])
10th Jun 2020, 9:27 AM
Devarinti.Venumadav
Devarinti.Venumadav - avatar
+ 2
Please message me personally
10th Jun 2020, 10:13 AM
Ritik Sharma
+ 2
List = input(':') If any([i == $ for i in list]): Print('True')
10th Jun 2020, 10:59 AM
mobin
+ 2
you can use it when you iterate in lists we use a for-statement to declare our intentions. But did you know that it is possible to add a condition to this? This will add only those items to the list that meet the condition (for which the condition is True). For example [i for i in range(8) if i%2!=0] Ans: [1, 3, 5, 7] and also you can nested conditionals. With a Python list comprehension, it doesn’t have to be a single condition; you can nest conditions. Here’s an example. [i for i in range(8) if i%2==0 if i%3==0] Ans: [0, 6]
10th Jun 2020, 4:29 PM
Sidhartha Manríquez
Sidhartha Manríquez - avatar
+ 1
𝐊𝐢𝐢𝐛𝐨 𝐆𝐡𝐚𝐲𝐚𝐥 But I am not able to assign values by using this method
8th Jun 2020, 2:27 PM
Namit Jain
Namit Jain - avatar