yet another quick question...
I wrote this at the end of a script
y = 1
n = 0
i = input("Again? Y/N: ")
if i is 0:
print ("Good bye!")
exit
if i is 1:
execfile ("program2.py")
now of course if i is 0, they won't be able to see the "good bye!" because it will only last for like half a second...
is there any command to like say "wait 1 second"?
as long as quick command questions go, is it possible to write exponents? because like if you write 3^2 it won't get you 9, it will get you 1 for some reason...