Quick actions

cmd+k|ctrl+k

Navigation

Languages

Exercises 3.9

Snippet info

Language

Python

Visibility

public

Author

xuandieu.fetel

Created

2016-09-20T07:08:07Z

Updated

2016-09-23T10:22:18Z

lst_num = []
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_num.append([a, b, c])
print('List number: ', lst_num)
INFO