Forum: Python Aug 16th, 2008 |
| Replies: 2 Views: 563 Hi everyone I am having a little problem with a program that I wrote
def P():
a = "a"
aa = "aa"
b = "b"
bb = "bb"
text = raw_input("Enter Text: ")... |
Forum: Python Jul 27th, 2008 |
| Replies: 2 Views: 398 If you want to compile a program than you might want to use py2exe. Its a pretty good compiler that you can use so here is the link and give it a try.
http://www.py2exe.org/index.cgi/FrontPage
... |
Forum: Python Jul 25th, 2008 |
| Replies: 1 Views: 592 If you are using pygame you would want to use either:
pygame.time.wait()
or
pygame.time.delay()
for more information on how to delay an event go to: |
Forum: Python Jul 23rd, 2008 |
| Replies: 4 Views: 653 Ok here is what you need to know when it comes to writing a program IDLE is 100 times better than the command line. Yet, when it comes to running a program they look better in the command line. There... |
Forum: Python Jul 19th, 2008 |
| Replies: 1 Views: 604 What you should do is rewrite your program and put it on a while loop so that when it ends it restarts by itself. Once you got that you should make a quit option and the program should work properly.... |
Forum: Python Jul 16th, 2008 |
| Replies: 1 Views: 947 Here is what you need to do:
1. Open the Python IDLE and type in:
>>> help()
(The following text will come up follow the instruction and you should find all the information you need)
... |
Forum: Python Jul 11th, 2008 |
| Replies: 1 Views: 723 Dude you need to give more information for anyone to help you and make sure you post your question on the right forum. |
Forum: Python Jul 9th, 2008 |
| Replies: 8 Views: 1,749 thanks that really helped a lot I can finish my program now. BTW my the scientific notation conversion is right since there are 18 numbers after the decimal. |
Forum: Python Jul 9th, 2008 |
| Replies: 8 Views: 1,749 Ok here is my problem more detailed. Lets say I am making a simple program in which I ask the person to type in a number and that number is multiplied my some other number of my choice. Now what I... |
Forum: Python Jul 9th, 2008 |
| Replies: 8 Views: 1,749 Hey there everyone I need a little help. Right now I am in the process of writing a program that uses subscripts and superscript but I dont have a clue how to get them. I am not even sure if they can... |
Forum: Python Jul 6th, 2008 |
| Replies: 5 Views: 5,494 Very true that’s the recommended style for coding in python. However, as you start to learn a programming language you will see that many things can change and one of those is the style in which you... |
Forum: Python Jul 2nd, 2008 |
| Replies: 5 Views: 5,494 Good question and I am glad you asked. Ok before I go on to explaining why I used there you must know that import math * could have been used anywhere in the code before the three functions(AnB, CnA,... |
Forum: Python Jun 18th, 2008 |
| Replies: 5 Views: 5,494 If you are on school and you are taking algebra like me or just want to find the missing length of one side of the triangle than this program should help you out. Pythagorean Theorem Calculator is... |