Answers for "print items of list using list comprehension in python"

0

print items of list using list comprehension in python

l=["vanilla","chocolate","butterscotch","strawberry"]
[print(x) for x in l]
Posted by: Guest on January-22-2022

Code answers related to "print items of list using list comprehension in python"

Python Answers by Framework

Browse Popular Code Answers by Language