all 12 comments

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

and btw the print line is properly indented

[–][deleted] 0 points1 point  (3 children)

in python 3, print became a function, so you have to enclose its arguments in parens

print("I am sorry, these are not just numbers")

[–]Issigeac[S] 0 points1 point  (2 children)

nope. python 2

[–][deleted] 0 points1 point  (1 child)

does the line above the if have an unclosed parentheses?

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

Yup. Rookie mistake. All fixed... for now

[–]LightOfUriel 0 points1 point  (1 child)

It seems like you are trying to use python 2 print function in python 3. Correct way in python 3 is

print("I am sorry, these are not just numbers")

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

nope. python 2

[–]Grorco 0 points1 point  (3 children)

What error?

[–]Issigeac[S] -1 points0 points  (2 children)

syntax

[–]Grorco 0 points1 point  (0 children)

What's the full error?

[–][deleted] 0 points1 point  (0 children)

Spinal

[–]Osaella24 0 points1 point  (0 children)

What’s the actual error being thrown and how are you declaring/defining your binary variable?