Forum: Python Jun 26th, 2009 |
| Replies: 6 Views: 280 So input() in python 3 returns a string? |
Forum: Python Jun 26th, 2009 |
| Replies: 3 Views: 242 it prints them ontop of eachother, because at the end of each print() in the loop, print() automatically prints a newline, to get rid of this just go print('*', end='') |
Forum: Python Jun 26th, 2009 |
| Replies: 6 Views: 280 First of all, you don't have to do int(input()) because input() returns a number anyway.
And you should start with better explaining the rest of the problem |
Forum: Python Jun 18th, 2009 |
| Replies: 13 Views: 915 You might have to add the PyGame directory, or the python directory to the systems PATH variable, just google "Windows PATH variable" and you should be able to find out how.
You would just add the... |