Quick actions

cmd+k|ctrl+k

Navigation

Languages

List Comprehension (4)

Snippet info

Language

Python

Visibility

public

Author

hilmi-am

Created

2020-06-23T15:06:12Z

Updated

2020-06-23T15:06:12Z

list_a = range(1, 10, 2)
x = [[a**2, a**3] for a in list_a]
print(x)
INFO