Quick actions

cmd+k|ctrl+k

Navigation

Languages

3.9

Snippet info

Language

Python

Visibility

public

Author

tailtt93

Created

2016-10-22T02:41:02Z

Updated

2016-10-23T03:08:53Z

a = [(a,b,c) for a in range(10) for b in range(10) for c in range(1,10) if a + b/c == 10]
print (a)
INFO