Python Forum
5 mini programming projects for the python beginner
Thread Rating:
  • 2 Vote(s) - 3.5 Average
  • 1
  • 2
  • 3
  • 4
  • 5
5 mini programming projects for the python beginner
#1
Hi,

I've found a nice tutorial which I've already started.
I'd like to now how could my solutions be better, let's say more pytonic. I'm really into python, I'd like to have strong foundation, while learning it.
Please if you have time, and can provide clearer, easier, more pythonic code, please share it with me.

1. Dice Rolling Simulator version A:

import random 
import time

def castDie():

   input('Press any key to cast the die!')
   r = list(range(1, 7))
   print('Result: ' + str(random.choice(r)))


while True:
   time.sleep(1)
   castDie()
1. Dice Rolling Simulator version B:
import random

def question():
        input('Press enter to roll!')

def roll():
    n = [1, 2, 3, 4, 5, 6]
    print(random.choice(n))

question()
roll()
2. Guess The Number:
import random

n = random.randrange(1, 101)
print('I\'ve though a number between 1 and 100!')

while True:
    try:
        g = input('Guess!')
        g = int(g)
        if not 100 > g > 0:
            print('It\'s in between 0 and 100!')
    except ValueError:
        print('Enter an integer')
        continue

    if g == n:
        print('Congratulations!')
        break

    if g < n:
        print('Larger')

    if g > n:
        print('Smaller')
Reply


Messages In This Thread
5 mini programming projects for the python beginner - by kerzol81 - Apr-17-2017, 07:26 AM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Visual Python Programming flows Joost 0 2,688 Jun-06-2021, 06:51 AM
Last Post: Joost
Photo All 31 of my Python projects with source code steve_shambles 2 4,165 Mar-23-2020, 12:08 AM
Last Post: steve_shambles
  Guess the dice roll mini-game tawnnx 6 7,358 May-22-2018, 02:12 PM
Last Post: malonn
  My first python projects (help with reviews and opinions) wilfredinni 0 9,460 Mar-06-2018, 02:33 PM
Last Post: wilfredinni
  Use this integer and string encrypter and decrypter module in your projects Unlimiter 4 4,279 Jan-05-2018, 11:32 AM
Last Post: Unlimiter
  Mini-Web Framework nilamo 12 9,739 Jun-15-2017, 05:32 AM
Last Post: Skaperen

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020