alright i know you're tired of explaining simple things to me, but i've looked around and really can't figure how to do this...
i'm trying to write a simple python script like when you type in a number for n, and press enter, it finds n+2?
i thought it will be something simple like
input (n)
print (n+2)
but apparently input doesn't define n, as it says "name n is undefined"
anyone know how to write this script?
or anyone know the command to define n?