I know I should probably be able to figure this out on my own, but how do I simply make a code that changes somethings value depending on the input. This is my code:
a = False
c = input("do you want A to be positive or negative?\n")
if c== "Pos" or "pos":
print("a switched to positive")
a = True
if c== "Neg" or "neg":
print("a switched to negative")
a = False
It doesn't work though. How would I do this? Thanks!