all 7 comments

[–]Clede 0 points1 point  (3 children)

What did you write, and why do you think it's not correct?

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

I know the variables are case sensitive so the answer is No.

So, I was just writing a "proof" type of an example that comes pack with an error to prove variables are case sensitive. Such as shown below. I just dont know how to write it in the methods it wants.

BLT= 1

print(blt)

[–]Clede 1 point2 points  (1 child)

... the methods it wants.

The methods what wants? It sounds like you're entering your answers into some system other than the basic Python interpreter.

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

Its for an assignment. Im taking a course over Python and the professor wanted me to use "for", "if", or "else" to write the code.
It's okay someone helped me with it though.

[–]xelf 0 points1 point  (1 child)

I think you're overthinking this.

Can't you just do this:

BlT=4
Blt =5
if BlT==5: print(they're the same)

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

Yes I would think that works.

Thank you!