Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-17 Thread Jason Friedman
> if you're interested in learning Python and/or game programming in > Python, you might want to take a look at http://inventwithpython.com/ And https://www.coursera.org/course/interactivepython. -- http://mail.python.org/mailman/listinfo/python-list

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-17 Thread darnold
On Dec 16, 12:38 pm, tbg wrote: > Nice, will have to try it out... if you're interested in learning Python and/or game programming in Python, you might want to take a look at http://inventwithpython.com/ . HTH, Don -- http://mail.python.org/mailman/listinfo/python-list

Re: Pastebin [was: Trying to make a basic Python score counter in a game... will not count.]

2012-12-17 Thread Chris Angelico
On Mon, Dec 17, 2012 at 5:47 PM, Steven D'Aprano wrote: > On Mon, 17 Dec 2012 07:13:44 +1100, Chris Angelico wrote: >> I don't understand the idea behind the boycott. Are people worried about >> the longevity of linked-to content, in the event that pastebin should, >> as you say, cease to exist to

Re: Pastebin [was: Trying to make a basic Python score counter in a game... will not count.]

2012-12-16 Thread Steven D'Aprano
On Mon, 17 Dec 2012 07:13:44 +1100, Chris Angelico wrote: > On Mon, Dec 17, 2012 at 5:35 AM, Ian Kelly > wrote: >> On Sun, Dec 16, 2012 at 10:32 AM, Kwpolska wrote: >>> On Sun, Dec 16, 2012 at 6:25 PM, wrote: On Sunday, December 16, 2012 10:09:53 AM UTC-7, Kwpolska wrote: >[...] >

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Mitya Sirenef
On 12/16/2012 01:07 PM, Mitya Sirenef wrote: On 12/16/2012 12:00 PM, Darrien Glasser wrote: >> Hey guys, I'm working on a Python rock paper scissors (lizard spock) game, and the beginning is > complete. After I finished it, I thought, "You know what? I think I can make this even better, and ad

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread alex23
On Dec 17, 3:32 am, Kwpolska wrote: > >> PS. please do not use pastebin.com. > http://news.ycombinator.com/item?id=2595066should answer this very question. By that argument, you should also be asking people not to use the internet. -- http://mail.python.org/mailman/listinfo/python-list

Re: Pastebin [was: Trying to make a basic Python score counter in a game... will not count.]

2012-12-16 Thread Chris Angelico
On Mon, Dec 17, 2012 at 5:35 AM, Ian Kelly wrote: > On Sun, Dec 16, 2012 at 10:32 AM, Kwpolska wrote: >> On Sun, Dec 16, 2012 at 6:25 PM, wrote: >>> On Sunday, December 16, 2012 10:09:53 AM UTC-7, Kwpolska wrote: [...] PS. please do not use pastebin.com. >>> >>> Why? >> >> http://news.

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread tbg
Nice, will have to try it out... -- http://mail.python.org/mailman/listinfo/python-list

Pastebin [was: Trying to make a basic Python score counter in a game... will not count.]

2012-12-16 Thread Ian Kelly
On Sun, Dec 16, 2012 at 10:32 AM, Kwpolska wrote: > On Sun, Dec 16, 2012 at 6:25 PM, wrote: >> On Sunday, December 16, 2012 10:09:53 AM UTC-7, Kwpolska wrote: >>>[...] >>> PS. please do not use pastebin.com. >> >> Why? > > http://news.ycombinator.com/item?id=2595066 should answer this very quest

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Mitya Sirenef
On 12/16/2012 01:17 PM, tbg wrote: On Sunday, December 16, 2012 1:07:16 PM UTC-5, Mitya Sirenef wrote: On 12/16/2012 12:00 PM, Darrien Glasser wrote: Hey guys, I'm working on a Python rock paper scissors (lizard spock) game, and the beginning is complete. After I finished it, I thought, "Yo

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread tbg
On Sunday, December 16, 2012 1:07:16 PM UTC-5, Mitya Sirenef wrote: > On 12/16/2012 12:00 PM, Darrien Glasser wrote: > > > Hey guys, I'm working on a Python rock paper scissors (lizard spock) game, > > and the beginning is > > complete. After I finished it, I thought, "You know what? I think I

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Mitya Sirenef
On 12/16/2012 12:00 PM, Darrien Glasser wrote: Hey guys, I'm working on a Python rock paper scissors (lizard spock) game, and the beginning is complete. After I finished it, I thought, "You know what? I think I can make this even better, and add a score counter." And so I did. > > The problem

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread tbg
On Sunday, December 16, 2012 12:50:18 PM UTC-5, Kwpolska wrote: > On Sun, Dec 16, 2012 at 6:44 PM, tbg wrote: > > > I changed it so that it said winx += 1 etc. and it doesn't seem to save it. > > I also tried pulling the variables from the loop and making them global > > variables at the top. >

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Kwpolska
On Sun, Dec 16, 2012 at 6:44 PM, tbg wrote: > I changed it so that it said winx += 1 etc. and it doesn't seem to save it. I > also tried pulling the variables from the loop and making them global > variables at the top. > > The latter game me a traceback error when printing out the results. Any

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread tbg
On Sunday, December 16, 2012 12:16:34 PM UTC-5, ru...@yahoo.com wrote: > > Hey guys, I'm working on a Python rock paper scissors (lizard spock) > > > game, and the beginning is complete. After I finished it, I thought, > > > "You know what? I think I can make this even better, and add a score >

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Kwpolska
On Sun, Dec 16, 2012 at 6:25 PM, wrote: > On Sunday, December 16, 2012 10:09:53 AM UTC-7, Kwpolska wrote: >>[...] >> PS. please do not use pastebin.com. > > Why? > -- > http://mail.python.org/mailman/listinfo/python-list http://news.ycombinator.com/item?id=2595066 should answer this very questio

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread rurpy
On Sunday, December 16, 2012 10:09:53 AM UTC-7, Kwpolska wrote: >[...] > PS. please do not use pastebin.com. Why? -- http://mail.python.org/mailman/listinfo/python-list

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread tbg
Actually, I was just going to post that it wasn't saving the scores. Great timing, I'll try it. -- http://mail.python.org/mailman/listinfo/python-list

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread rurpy
> Hey guys, I'm working on a Python rock paper scissors (lizard spock) > game, and the beginning is complete. After I finished it, I thought, > "You know what? I think I can make this even better, and add a score > counter." And so I did. > > The problem is that it doesn't seem to actually keep tr

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Darrien Glasser
Awesome thanks, and sounds good. -- http://mail.python.org/mailman/listinfo/python-list

Re: Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Kwpolska
On Sun, Dec 16, 2012 at 6:00 PM, Darrien Glasser wrote: > Hey guys, I'm working on a Python rock paper scissors (lizard spock) game, > and the beginning is complete. After I finished it, I thought, "You know > what? I think I can make this even better, and add a score counter." And so I > did.

Trying to make a basic Python score counter in a game... will not count.

2012-12-16 Thread Darrien Glasser
Hey guys, I'm working on a Python rock paper scissors (lizard spock) game, and the beginning is complete. After I finished it, I thought, "You know what? I think I can make this even better, and add a score counter." And so I did. The problem is that it doesn't seem to actually keep track of sco