Quick actions

cmd+k|ctrl+k

Navigation

Languages

3.9

Snippet info

Language

Python

Visibility

public

Author

ninhvunguyen

Created

2016-09-21T09:13:41Z

Updated

2016-09-21T09:20:46Z

lst = []
for a in range(0,10):
	for b in range(0,10):
		for c in range(0,10):
			if c != 0 and a + b/c == 10:
				lst.append([a,b,c])
print('List:',lst)
INFO