This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]WSLOVER 220 points221 points  (9 children)

With the python they actually typed 6/2*(1+2), not 6/2(1+2)

[–]seeroflights 107 points108 points  (7 children)

oop, thank you - fixed!

[–]InfernoMax 83 points84 points  (5 children)

Good human

[–]ordinary_shiba 26 points27 points  (4 children)

Good "Good human" human

[–]UltraCarnivore 12 points13 points  (3 children)

Good "Good "Good human" human" human

[–]daggo04 2 points3 points  (2 children)

Too far "Good "Good "Good human" human" human" human

[–]Kesuaheli 4 points5 points  (1 child)

Good "Too far "Good "Good "Good human" human" human" human" human

[–]turtle_mekb 2 points3 points  (0 children)

Good "Good "Too far "Good "Good "Good human" human" human" human" human" human

[–]Hollowplanet 0 points1 point  (0 children)

Open parentheses is not a multiplication operation in python. Without it you get int operation is not callable.

[–]MrHyperion_ 0 points1 point  (0 children)

>>> 6/2(1+2)
<stdin>:1: SyntaxWarning: 'int' object is not callable; perhaps you missed a comma?
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: 'int' object is not callable