08-16-2010, 07:03 PM
(This post was last modified: 08-16-2010, 07:05 PM by Daniel Faraday.)
Give me a second and I'll try to give you an answer.
P.S. I think that 2.7 and 2.6 have the same syntax for the most part.
The only thing that would be a problem would be 2 to 3.
I think the problem is probably this part.
Replace that part with this.
P.S. I think that 2.7 and 2.6 have the same syntax for the most part.
The only thing that would be a problem would be 2 to 3.
I think the problem is probably this part.
Code:
else initial > 150:
a=initial-initial*.025 - .25
b=a-.5
c=b-initial*.065
d=c-c*.029-.3
print(d)
time.sleep(100)
Replace that part with this.
Code:
else:
a=initial-initial*.025 - .25
b=a-.5
c=b-initial*.065
d=c-c*.029-.3
print(d)
time.sleep(100)