Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
1 Commented Post
0 Endorsements
Ranked #4K
~20.3K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

16 Posted Topics

Member Avatar for Steph102

Hey I did this in class the other week. This code is simple and works perfectly [CODE]import random Num = int(raw_input("enter number of coin flips:")) coinf = 0 h = 0 t = 0 while coinf < Num: coinf = coinf + 1 rand = random.randint(0,2) if rand == 1: …

Member Avatar for Reverend Jim
2
16K
Member Avatar for Darkangelchick

Hey guys I'm attempting to make a super mario like platform game and need help with making images move. Like instead of moving the little man, just having the background moving with the corresponding button movement. Can anyone hint at how to do this? Or is moving the little man …

Member Avatar for shadwickman
0
151
Member Avatar for Darkangelchick

Hi im writing a program that returns whether an inputted number is prime or not, but Im kind of stuck... [CODE]import math def listfactors(n): # defining the function l = [] for i in range (1, int(math.sqrt(n))+1): if float(n)/float(i) == int(float(n)/float(i)): l.append(i) l.append(n/i) return l primeNum = int(raw_input("Enter number here:")) …

Member Avatar for Progressivism
0
154
Member Avatar for Darkangelchick

Hey guys, I'm making a platform game similar to Super Mario in Pygame and I want to add platforms i.e. I have a background picture that has platforms drawn on it. I then want to make it so he can only go down as far as the platform, and as …

Member Avatar for shadwickman
0
141
Member Avatar for Darkangelchick

Hey guys Im trying to make an auction website for school using html, ASP and a database in Acess. I am trying to create buttins so my users can click on them to Bid on people. I keep coming up with different errors and when I view the source code …

Member Avatar for IdanS
0
114
Member Avatar for Darkangelchick

Hey guys I have to analyse a short program for school and the only keyword i cannot find a definition for if ORG. What does this do in assembly code?? Any help would be appreciated. Thanks

Member Avatar for jephthah
0
137
Member Avatar for hunter007

Well I'm a programmer and using Debian. I find it very easy to update and install packages. Also being a gamer I can still play 99% of my windows games through Wine. All of my old programs can either be used through Wine or I have found suitable Linux substitutes. …

Member Avatar for gnujohn
0
962
Member Avatar for tomtetlaw

[QUOTE=shadwickman;835413]Can I see the rest of your code? I don't use Tk (I find wxPython to be much better), but what happens if you replace that line with [code=python] tk.FileDialog.askopenfilename() [/code] Of course, that would assume tk has a class named FileDialog and that you use Tkinter like [code=python] import …

Member Avatar for tomtetlaw
0
615
Member Avatar for Darkangelchick

Hey guys I have to create a python version of Tic Tac Toe, but does anyone know if it's possible to make this using Tkinter? I think I have to have it nice and bright and colourful, therefore TKinter is the only solution i can think of using Python. Any …

Member Avatar for woooee
0
662
Member Avatar for Darkangelchick

Hey guys I'm using Linux and I'm having trouble with Open Office. This is the first time it has happened. I try to open a file saved with open office and its coming up with translation stuff like western europe (Applemac) and stuff. What has happened and how can I …

Member Avatar for Darkangelchick
0
150
Member Avatar for rickbill

Hmmm I only did this project in python, but if you create two images ( one for heads and one for tails) then link them to the results via a boolean, this should help. If you can't find out how to do this...google it. Hope this helped and have fun

Member Avatar for Darkangelchick
0
186
Member Avatar for Darkangelchick

Hi guys, Im still at school and recently added the DET portal to firefox so I can use the internet at school. Now when I try to install downloaded packages in the console, it tries to connect through DET even though its unselected in preferneces. Any help?? Thanks

0
57
Member Avatar for Darkangelchick

Hey guys Ive just changed my OS from windows to Linux and I was wondering if anyone knew how I could keep my old games?? Like do I need special software to continue playing windows games? Or can I get Linux versions of them? Also, any advice or tips on …

Member Avatar for nerden
0
135
Member Avatar for Darkangelchick

Hi guys, I'm currently working on a program to return whether an inputted number is perfect or not. I've found that the formula for the perfect number is If 2n-1 is prime then 2(n-1)(2n-1) is perfect. I've worked out some code, but I'm stuck. [CODE]Def listfactors(n): For 1=2 to n/2 …

Member Avatar for lllllIllIlllI
0
149
Member Avatar for Darkangelchick

Hey guys im doing the NCSS python challenge and I need help!! ok so here's my current problems (p.s. my teach cant even help) PROBLEM 1 ************************ [code]# This is a Python file def fibonacci(n): return (n <= 1) and 1 or fibonacci(n-1) + fibonacci(n-2) def decrypt(s): def helper(s): return …

Member Avatar for Darkangelchick
0
219
Member Avatar for Darkangelchick

Hey guys Ive been making sudoku for a high school project and I need help getting it to check the groups of 9 boxes. It already checks the vertical and horizontal rows but not the boxes. I need to find a consistent formula to change it to the right section. …

Member Avatar for Ranfile
0
109

The End.