Hello, I'm a newb and have been playing with Python trying to print a
changing value to the screen that updates as the value changes. I have this
code, which is pretty much doing what I want:
#!/usr/bin/env python3
import time
text = input('Please enter something: ')
for c in text:
print('T
Sweet, thanks for the information. Lots to learn.
On Thu, Sep 24, 2009 at 12:23 AM, wrote:
> On 04:11 am, tusklah...@gmail.com wrote:
>
>> Hello, I'm a newb and have been playing with Python trying to print a
>> changing value to the screen that updates as the value changes. I have
>> this
>> co