Computer Forums

Member Login

Remember Me? Sign Up! | Forgot Password
 
Slogan
 
Closed Thread
Old 02-15-2008, 11:01 PM   #21 (permalink)
DawnOfDoom's Avatar
 
Ultra Techie

Join Date: Jan 2007

Location: North Carolina

Posts: 994

DawnOfDoom is on a distinguished road

Send a message via MSN to DawnOfDoom Send a message via Yahoo to DawnOfDoom
Default Re: help

they progress to the most advanced
yes they are all different but python is basic so yo ucan udnerstand the basic fundamentals f things that work so when you get to C all you gota basicly learn are some slightly different format and some memory manage ment (not hard) and then up to java python is stll useful because it teaches you hwo to change data rename it and all that and java you'll need to know the basics of that.
__________________
Quote:
Originally Posted by Oreo View Post
That was an epic forum speech, Doom is tech-forums very own Martin Luther King.
Don't Tell any one but I know who Crunch is...

I Do accept support requests via PM, MSN, and e-mail

If I have been helpful to you in any way please click the scale under my name
DawnOfDoom is offline  
Old 02-15-2008, 11:04 PM   #22 (permalink)
Luke's Avatar
 
FPS Addict

Join Date: Dec 2007

Location: Fonthill, Ontario, Canada

Posts: 4,262

Luke has a spectacular aura aboutLuke has a spectacular aura about

Send a message via AIM to Luke Send a message via MSN to Luke
Default Re: help

cool, im not sure if i'll be able to get that far lol, do u know all that way up to java?
__________________

<<<<If you found me helpful in anyway, or enjoy my posts then click the checkmark<<<<
Luke is offline  
Old 02-15-2008, 11:33 PM   #23 (permalink)
DawnOfDoom's Avatar
 
Ultra Techie

Join Date: Jan 2007

Location: North Carolina

Posts: 994

DawnOfDoom is on a distinguished road

Send a message via MSN to DawnOfDoom Send a message via Yahoo to DawnOfDoom
Default Re: help

HAHHAHA your funny no i barely know C im only 14 and im doing this jsut for a hobby and i plan on doing this for my career so why not start early eh?
__________________
Quote:
Originally Posted by Oreo View Post
That was an epic forum speech, Doom is tech-forums very own Martin Luther King.
Don't Tell any one but I know who Crunch is...

I Do accept support requests via PM, MSN, and e-mail

If I have been helpful to you in any way please click the scale under my name
DawnOfDoom is offline  
Old 02-15-2008, 11:54 PM   #24 (permalink)
Luke's Avatar
 
FPS Addict

Join Date: Dec 2007

Location: Fonthill, Ontario, Canada

Posts: 4,262

Luke has a spectacular aura aboutLuke has a spectacular aura about

Send a message via AIM to Luke Send a message via MSN to Luke
Default Re: help

oh, i though u were like a 25 year old programer and i was the newb that didn't know anything, i just turned 15 about 3 months ago.
__________________

<<<<If you found me helpful in anyway, or enjoy my posts then click the checkmark<<<<
Luke is offline  
Old 02-16-2008, 07:25 PM   #25 (permalink)
DawnOfDoom's Avatar
 
Ultra Techie

Join Date: Jan 2007

Location: North Carolina

Posts: 994

DawnOfDoom is on a distinguished road

Send a message via MSN to DawnOfDoom Send a message via Yahoo to DawnOfDoom
Default Re: help

well happy late b day. lol, im just starting to get into it if you have any issues you can drop by this Forum and they've got all kinds of threads about all programming types.

Software Development Forum | DreamInCode.net
__________________
Quote:
Originally Posted by Oreo View Post
That was an epic forum speech, Doom is tech-forums very own Martin Luther King.
Don't Tell any one but I know who Crunch is...

I Do accept support requests via PM, MSN, and e-mail

If I have been helpful to you in any way please click the scale under my name
DawnOfDoom is offline  
Old 02-16-2008, 07:57 PM   #26 (permalink)
Luke's Avatar
 
FPS Addict

Join Date: Dec 2007

Location: Fonthill, Ontario, Canada

Posts: 4,262

Luke has a spectacular aura aboutLuke has a spectacular aura about

Send a message via AIM to Luke Send a message via MSN to Luke
Default Re: help

thanks, once i get to like c++ if i get that far without getting bored i might stop by that forum, when u get to c++ can u write simple programs that actually do things.
__________________

<<<<If you found me helpful in anyway, or enjoy my posts then click the checkmark<<<<
Luke is offline  
Old 02-16-2008, 08:48 PM   #27 (permalink)
DawnOfDoom's Avatar
 
Ultra Techie

Join Date: Jan 2007

Location: North Carolina

Posts: 994

DawnOfDoom is on a distinguished road

Send a message via MSN to DawnOfDoom Send a message via Yahoo to DawnOfDoom
Default Re: help

indeed. but python is just like an understanding of how things are going to kinda be in the future. i've wrote a script thats a game in Python if you want the snippet to play the game.
__________________
Quote:
Originally Posted by Oreo View Post
That was an epic forum speech, Doom is tech-forums very own Martin Luther King.
Don't Tell any one but I know who Crunch is...

I Do accept support requests via PM, MSN, and e-mail

If I have been helpful to you in any way please click the scale under my name
DawnOfDoom is offline  
Old 02-16-2008, 09:23 PM   #28 (permalink)
Luke's Avatar
 
FPS Addict

Join Date: Dec 2007

Location: Fonthill, Ontario, Canada

Posts: 4,262

Luke has a spectacular aura aboutLuke has a spectacular aura about

Send a message via AIM to Luke Send a message via MSN to Luke
Default Re: help

iv donelike half the lessons in the tuturial and there's nothing like making any games. just doing equations in the scripts. can u email me the script for the game? i want to see if what im learning can do anything useful.
__________________

<<<<If you found me helpful in anyway, or enjoy my posts then click the checkmark<<<<
Luke is offline  
Old 02-16-2008, 09:43 PM   #29 (permalink)
DawnOfDoom's Avatar
 
Ultra Techie

Join Date: Jan 2007

Location: North Carolina

Posts: 994

DawnOfDoom is on a distinguished road

Send a message via MSN to DawnOfDoom Send a message via Yahoo to DawnOfDoom
Default Re: help

sure i'll paste it in here

Code:
number = aStr = "dictionary"
answer = ''
print'Descramble this word!!'
print aStr[3] + aStr[6] + aStr[1] + aStr[5] + aStr[0] + aStr[9] + aStr[2] + aStr[8] + aStr[4] + aStr[7]
attempts = 0
while answer != number:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number ):
            print 'Try Again'
    elif( answer < number ):
          print 'Wrong'
    elif( answer == number ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number1 = aStr = "radification"
answer = ''
print'Descramble this word!!'
print aStr[9] + aStr[2] + aStr[5] + aStr[8] + aStr[10] + aStr[7] + aStr[0] + aStr[6] + aStr[4] + aStr[3] + aStr [11] + aStr [1] 
attempts = 0
while answer != number1:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number1 ):
            print 'Try Again'
    elif( answer < number1 ):
          print 'Wrong'
    elif( answer == number1 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number2 = aStr = "apostacy"
answer = ''
print'Descramble this word!!'
print aStr[3] + aStr[1] + aStr[5] + aStr[7] + aStr[2] + aStr[4] + aStr[6] + aStr[0]
attempts = 0
while answer != number2:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number2 ):
            print 'Try Again'
    elif( answer < number2 ):
          print 'Wrong'
    elif( answer == number2 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number3 = aStr = "distinguishable"
answer = ''
print'Descramble this word!!'
print aStr[1] + aStr[8] + aStr[4] + aStr[14] + aStr[0] + aStr[9] + aStr[10] + aStr[5] + aStr[6] + aStr[13] + aStr [2] + aStr [3] + aStr[14] + aStr[7] + aStr[11] 
attempts = 0
while answer != number3:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number3 ):
            print 'Try Again'
    elif( answer < number3 ):
          print 'Wrong'
    elif( answer == number3 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number4 = aStr = "behemoth"
answer = ''
print'Descramble this word!!'
print aStr[5] + aStr[4] + aStr[3] + aStr[7] + aStr[1] + aStr[6] + aStr[2] + aStr[0] 
attempts = 0
while answer != number4:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number4 ):
            print 'Try Again'
    elif( answer < number4 ):
          print 'Wrong'
    elif( answer == number4 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number5 = aStr = "transportaion"
answer = ''
print'Descramble this word!!'
print aStr[4] + aStr[8] + aStr[5] + aStr[11] + aStr[9] + aStr[10] + aStr[3] + aStr[0] + aStr[1] + aStr[12] + aStr[6] + aStr[2] + aStr[7]
attempts = 0
while answer != number5:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number5 ):
            print 'Try Again'
    elif( answer < number5 ):
          print 'Wrong'
    elif( answer == number5 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number6 = aStr = "apathy"
answer = ''
print'Descramble this word!!'
print aStr[1] + aStr[3] + aStr[5] + aStr[0] + aStr[2] + aStr[4] 
attempts = 0
while answer != number6:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number6 ):
            print 'Try Again'
    elif( answer < number6 ):
          print 'Wrong'
    elif( answer == number6 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number7 = aStr = "examination"
answer = ''
print'Descramble this word!!'
print aStr[0] + aStr[3] + aStr[6] + aStr[9] + aStr[5] + aStr[7] + aStr[2] + aStr[4] + aStr[8] + aStr[1] + aStr[6] 
attempts = 0
while answer != number7:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number7 ):
            print 'Try Again'
    elif( answer < number7 ):
          print 'Wrong'
    elif( answer == number7 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number8 = aStr = "medication"
answer = ''
print'Descramble this word!!'
print aStr[0] + aStr[8] + aStr[2] + aStr[4] + aStr[7] + aStr[1] + aStr[6] + aStr[5] + aStr[3] + aStr[9]
attempts = 0
while answer != number8:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number8 ):
            print 'Try Again'
    elif( answer < number8 ):
          print 'Wrong'
    elif( answer == number8 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number9 = aStr = "clostrophobic"
answer = ''
print'Descramble this word!!'
print aStr[4] + aStr[3] + aStr[5] + aStr[11] + aStr[9] + aStr[1] + aStr[8] + aStr[0] + aStr[10] + aStr[12] + aStr[6] + aStr[2] + aStr[7]
attempts = 0
while answer != number9:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number9 ):
            print 'Try Again'
    elif( answer < number9 ):
          print 'Wrong'
    elif( answer == number9 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number10 = aStr = "concentrate"
answer = ''
print'Descramble this word!!'
print aStr[4] + aStr[0] + aStr[6] + aStr[9] + aStr[1] + aStr[3] + aStr[5] + aStr[7] + aStr[2] + aStr[8] + aStr[10] 
attempts = 0
while answer != number10:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number5 ):
            print 'Try Again'
    elif( answer < number10 ):
          print 'Wrong'
    elif( answer == number10 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number11 = aStr = "intermission"
answer = ''
print'Descramble this word!!'
print aStr[4] + aStr[8] + aStr[5] + aStr[11] + aStr[9] + aStr[10] + aStr[3] + aStr[0] + aStr[1] + aStr[6] + aStr[2] + aStr[7]
attempts = 0
while answer != number11:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number11 ):
            print 'Try Again'
    elif( answer < number11 ):
          print 'Wrong'
    elif( answer == number11 ):
        print 'you got it rights in %i tries!' %(attempts)
print ''
number12 = aStr = "dislexia"
answer = ''
print'Descramble this word!!'
print aStr[5] + aStr[1] + aStr[7] + aStr[0] + aStr[6] + aStr[3] + aStr[4] + aStr[2] 
attempts = 0
while answer != number12:
    answer = raw_input( '?' )
    attempts = attempts + 1
    if( answer > number12 ):
            print 'Try Again'
    elif( answer < number12 ):
          print 'Wrong'
    elif( answer == number12 ):
        print 'you got it rights in %i tries!' %(attempts)

#Other words to do later = dislexia 8 intermission 12

nvm lol i found out that i did it already and didnt delete the comment
__________________
Quote:
Originally Posted by Oreo View Post
That was an epic forum speech, Doom is tech-forums very own Martin Luther King.
Don't Tell any one but I know who Crunch is...

I Do accept support requests via PM, MSN, and e-mail

If I have been helpful to you in any way please click the scale under my name

Last edited by DawnOfDoom; 02-16-2008 at 09:47 PM.
DawnOfDoom is offline  
Old 02-16-2008, 09:48 PM   #30 (permalink)
Luke's Avatar
 
FPS Addict

Join Date: Dec 2007

Location: Fonthill, Ontario, Canada

Posts: 4,262

Luke has a spectacular aura aboutLuke has a spectacular aura about

Send a message via AIM to Luke Send a message via MSN to Luke
Default Re: help

hehehehe, i couldn't write that with me life on the line, how the heck did u write that, the lessons im at are just equation. how do i run it, just comp it into a .py file and run it in cmd?

EDIt: never mind, i did that and it works, pretty cool, i wana be able to do that.
__________________

<<<<If you found me helpful in anyway, or enjoy my posts then click the checkmark<<<<

Last edited by Luke; 02-16-2008 at 09:51 PM.
Luke is offline  
 
Closed Thread

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On