- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Well, I'm a first year coder, still in high school, competed in a few software comps such as the NSWProg Comp and the NCSS Python challenge. I'm interested in learning heaps of new stuff, so if anyone has any tips or advice, please let me know. I love…
- Interests
- Soccer Gaming Music Reading Footy Beach Futurama Family Guy Drawn Together Heroes Twilight Saga
- PC Specs
- Windows Vista Home basic Compaq laptop - celeron C700 orig. 512mb RAM, added 2GB Qutie annoying as it…
16 Posted Topics
Re: 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: … | |
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 … | |
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:")) … | |
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 … | |
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 … | |
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 | |
Re: 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. … | |
Re: [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 … | |
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 … | |
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 … | |
Re: 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 | |
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 | |
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 … | |
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 … | |
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 … | |
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. … |
The End.