Jump to content

What should I do next?

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
28 replies to this topic

#1
Andrew.G

Andrew.G

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 395 posts
Posted via CodeCall Mobile Ive been programming in python for a week now and the most advanced project Ive done so far is a number guessing game. Any suggestions on what I should try to accomplish next?

#2
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
Why not try to create another game? Maybe a minesweeper game or even a Su Do Ku program...
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation

Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!


#3
Andrew.G

Andrew.G

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 395 posts
Posted via CodeCall Mobile that sounds a little advanced anything a little simpler?

#4
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
Hmmm since you have a guess the number game... Why not Scissors, Paper, Rock? That's simple and a bit more advanced.
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation

Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!


#5
Andrew.G

Andrew.G

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 395 posts
Posted via CodeCall Mobile yeah once i do that then ill want to delve into some gui stuff also.

#6
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
That would be good, if you create a few games like guess the number and Scissors, Paper, Rock you can turn them into a GUI program for practice :)
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation

Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!


#7
BlaineSch

BlaineSch

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 2,448 posts
tic tac toe I think was assigned to me after the number guessing game

maybe not a game, what about learning stacks/heaps, etc

#8
Andrew.G

Andrew.G

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 395 posts
Posted via CodeCall Mobile thats probably a good idea because i have no idea what those are lol

#9
Brandon W

Brandon W

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 4,828 posts
Tic-tac-toe - Wikipedia, the free encyclopedia
jQuery Selectors Tutorial - jQuery Striped Table tutorial - jQuery Events - jQuery Validation

Sorry if I don't post as often as I did, I'll try to get here as much as possible! I'm working my bum off to get this scholarship and other stuff!


#10
chili5

chili5

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 7,247 posts
Look at the tutorials for information on those. Things like stacks and queues are different ways of representing your data which can make programming easier.

Minesweeper would be fun to make (and isn't really tricky) it would give you an opportunity to test gui code, using 2 dimensional arrays and recursive methods. It would be a lot of fun. :)

#11
Andrew.G

Andrew.G

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 395 posts
Posted via CodeCall Mobile ok ill do a rock paper scissors then try to implement a gui for that then ill try to tackle minesweeper. :)

#12
chili5

chili5

    Writes binary right handed and hex left handed

  • Members
  • PipPipPipPipPipPipPipPipPip
  • 7,247 posts
You could even do minesweeper without a GUI first. :) That would let you try out all the concepts first without a graphical interface messing you up. See this for an idea of what I am talking about. http://nayuki.eigens...ite200510p4.pdf. :)

Have fun with rock, paper, scissors. :)