If function not working

For some reason my “if” function only runs the first like of code.

if op == "Squared" or "squared" :
    cube()
elif op == "Subtraction" or "subtraction" :
    subtraction()
elif op == "Addition" or "addition" :
    addition() 
elif op == "Squared" or "squared" :
    cube()
elif op == "Multiplication" or "multiplication" :
    multiplication()
elif op == "Division" or "division" :
    division()

Like even when I put in Division, Multiplication, Addition, or Subtraction it only does squared. I’m either really stupid or it isn’t working. I’ve been trying to fix it for 2 hours now and nothing changed.

first line of code* not like mb

lol nevermind i figured it out how do i delete this

Hey, Did you find the mistake in your code?

I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).