Quick actions

cmd+k|ctrl+k

Navigation

Languages

4.1

Snippet info

Language

Python

Visibility

public

Author

tailtt93

Created

2016-11-04T14:42:59Z

Updated

2016-11-04T14:42:59Z

peri = [(a,b,c) for a in range(11) for b in range(11) for c in range(11) if a+b+c == 24]
print(peri)
INFO