PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
some_tuple = ("apple", "banana", "cherry")
#let's imagine you wanna print elements holding in tuple
#instead of boring loops like:
for x in some_tuple:
print(x) #... brr, i'm sleeping now
#you can just write smth like...
[print(x) for x in some_tuple]
#oneliners rules!
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run