- Upvotes Received
- 3
- Posts with Upvotes
- 3
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- Programming, Reading, Anything Sciency
- PC Specs
- Windows 7 Toshiba laptop, Quad core AMD Radeon Duel Graphics.
8 Posted Topics
Re: Hey, this is pretty cool! I just tested it and it sounds about right, though I'll have to take a look at the sky tonight. Its funny, 'cause I've also googled this, and heaps of websites can not agree on what the phase is. Half of them say waning cresent, … | |
Re: Hey thank you for this epic post!!! I used it as a base for checking if a number was prime in an algorithm I made for Project Euler #3. Thanks again!!!! | |
Re: Wow, no one has posted anything. Yes, it is possible to make a server in Python, or just turn a server on. You can interface with any server in Python, whether you use Python for this depends on your requirements. It can do all of the necessary things, but python … | |
Re: Would it not be easier to make `Foo` a decendent of `dict`? Then you have all of those by default. class Foo(dict) """ More code here """ pass | |
Re: I can see several problems with this code. 1. Your `print` statements are all over the place. You can't have `print"hello"` with no space. If you are using Python 2.x, use `print "hello"` (with the space) or if you using python 3.x use `print("hello")` with brackets. You can use the … | |
Re: Hello. Right, your first problem is that *colliderect* only checks if two rects are **overlapping.** So after they collide the first time, and the top equals the bottom, they are no longer overlapping and do not collide. You have no checks to see whether or not not you did collide … | |
Re: Do you mean you want to iterate through the original list and convert it into the given format? I don't entirely understand what you mean by 'first month' you've got a range of months there. If your data is in order you could use something like: res = {} for … | |
Re: There is a great website called http://www.ludumdare.com/ that is a good place for indie game makers to build up their skill by participating in competitions. You should check it out. |
The End.