Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- def f(x, y, z, w):
- return (x >= z) and w and (y != z)
- v = [0,1]
- print('x y z w')
- for x in v:
- for y in v:
- for z in v:
- for w in v:
- F = f(x,y,z,w)
- if F:
- print(x,y,z,w)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement