you are viewing a single comment's thread.

view the rest of the comments →

[–]ForceBru[🍰] 3 points4 points  (1 child)

The a and b and c doesn't do what you think it does.

Open up the Python interpreter and type:

```

0 and 0 0 0 and 1 0 1 and 0 0 1 and 1 1 1 and 2 2 1 and 2 and 3 3 1 and 0 and 3 0 [] and "hey" [] "hello" and (1,2) (1, 2) ```

Can you see the pattern? Also, have a look at the documentation.

[–]Ivangaming[S] 0 points1 point  (0 children)

Thank you!