Quick actions

cmd+k|ctrl+k

Navigation

Languages

3.8

Snippet info

Language

Python

Visibility

public

Author

tailtt93

Created

2016-10-16T14:38:34Z

Updated

2016-10-23T03:17:04Z

a = [i for i in range(1000) if i % 5 == 0 if i % 3 == 0]
print(sum(a))
INFO