83 Posted Topics
Re: The most amazing UFO I have ever witnessed was exremly large flying at a very suprizing low altitude. It couldn't have been mistaken to be anything from this planet minus some kind of extreme cover up. It was literally a flying city "mothership" of some sort. I would have to … | |
Re: I see some nice keywords in the question.... [QUOTE] I need to make an interactive program in Python that will start by asking the user to enter a list of numbers and then it will display the following menu. 1-Find The Maximum [B]-- seem like some functions[/B] 2-Find The Minimum … | |
Well I been studying like a rabid dog foaming at the mouth since I have a higher level language under my belt and my initial failiure at c++ as a first language. Anyway getting near the end of my first little tutorial and have a few more questions. 1. I … | |
Re: I modified this one a bit from a post I made a few days ago so you will need to clean it up but it does what you want. [CODE=python] from random import randrange def initialize(): """ create a list of random numbers and sort them and print them out""" … | |
Re: This question is completely determined on the way the individual would define alien. Otherwise it's quite honestly just silly to even ponder. If the definition of aleins is did we come the same raw materials that are floating around just about everywhere else in the universe that may have more … | |
Re: Kinda funny the poll is 50/50 when I took it cause I think that's how it is. I voted bad bacause I think it's true that bad seems to be quite natural at a young age. But I think for the most part once we are taught to be good … | |
Re: Looks like the name of your program you are trying to do a bubblesort not sure if you need to follow a specific format or anyting but this seems to work and may give you some idea of where you are going wrong or give you some ideas. [CODE=python] from … | |
Re: I think you are using blit() incorrectly all my code is on another machine atm so I can't check for sure. Anyhow I'm pretty sure you can't just blit without passing in a location in the form of a tuple. example: screen.blit(ball,(xposition,yposition)) or in other words screen.blit(ball,(100,100)) screen.blit(ballrect,(myrandomvariable,myrandomvariable)) | |
Re: You didn't ask a question, all you did was post the assignment. | |
Re: Hi and welcome to my favorite place on earth for the most part. What they are saying is true people are great here and will help you to become great if you want. On the other hand it's not a group of babysitters. The great part about your assignment is … | |
![]() | Re: I'm still just a dabbler, I dabble alot lmfao. 3d modleing and animation - Blender Game engine - pygame,wannamakemyownplayinwithithereandthere.exe Image Editing - GIMP cause im a gimp and not much of an artist sadly IDE - python--Idle c++--vs2008 |
Re: The entire Matrix set. Great concept pushed the limits of the standards at the time. X-MEN series, SpiderMan series, IronMan series. Suprizingly great compared to what my expecations would have been. Arnold best all time action hero has yet to be matched. Tommy Lee Jones was a nutcase and freakin … | |
Re: This is quite interesting would you mind showing the code your using now and possibly your new code if you find another solution? | |
Re: Very inventive of you tonyjv. Here's my simplistic attempt :). [CODE=python] from time import sleep import os def lotsofprints(): print "\n" * 40 message = "read me soon because I'm bound to disappear" print message sleep(1) # or .xx for milliseconds #os.system("cls") #uncomment if running on windows from a command … | |
Re: I think you might be correct tonyjv, but in the same sence sometimes it's for educational purposes to. I can only see 2 reasons to want to do this and one is educational the other is malicious. Just remember if you send a file like that to anyone you might … | |
Hello I'm learning a bit about data structures for the first time and so far I seem to understand how they work "I think" at this stage. My questions at this point would be. 1. Are data structures essentially classes minus methods which can preform actions on the memebers that … | |
Re: Indeed what has been said don't convert ed to an integer when you are trying to compare it to a string. Try something like this instead. [CODE=python] ed = raw_input("enter stuff: ") #instead of using lots of "or's" convert it to upper or lower case letters ed = ed.lower() if … | |
Hello all!!! It's been a while but glad to have enough time to be back. My question is basically one of design. I'm working on a new project using pygame at the moment, mainly to brush up on and enhance some Object Oriented skills. The project itself is basically going … | |
Hey guys, Well I'm onto images now but the tutorial I'm using seems to be good but I can't understand the input process. And I know you guys are great at this stuff so thought you might lend a hand here to get me up and started. The code the … | |
Hey guys I finally got my word unscrambler working the other day, now I fire it up with same code same everything and for some reason getting double output from a list that shouldn't be. So if someone could either look this over and find a problem or maybe do … | |
Hey all, still working on my lil program. But now that I'm getting into loops I'm pretty confused on this one. Needless to say I think this is the first while loop I have used since I started python about a week ago. What I'm trying to do at this … | |
Hey guys, I been working on a small project I found on another forum. It's supposed to decode scrambled word from a word list in 30 sec or less. Well I'm pretty noobish so my method might not be all that great, but I'm giving it a go and learning … | |
[COLOR="Green"]Hello all, I'm new to the forum and also to python :D. Anyway I have been enjoying it quite a bit and wanted to start into something a bit more technical. So I though sockets would be a good start. I found a great sight , but the first script … |