Random Module
import random
randomInteger = random.randint(1,10)
print(randomInteger)
Head or Tails
import random
HorT = random.randint(0,1)
H = 0
T = 1
if HorT == H:
print("Heads")
elif HorT == 1:
print("Tails")
Lists
fruits = ["Tangerine", "Strawberry"]
print(fruits[0])
fruits.append("Blueberry")
print(fruits[2])
fruits.extend(["Melon", "Orange"])
fruits.insert(1, "Watermelon")
print(fruits[1])
Banker Roulette
import random
names = input("Put in the names: ")
sp = names.split(",")
x = len(sp)
randomStr = random.randint(0, x)
print(f"{sp[randomStr]} will be buying our meals today!")ds m,.
Nested Lists
fruits = ("Strawberries", "Nectarines", "Apples", "Grapes", "Peaches", "Cherries", "Pears")
vegetables = ["Spinach","Kale", "Tomatoes","Celery", "Potatoes"]
dirtyDozen = [fruits, vegetables]
Rock, Paper, Scissors
# Rock, Paper, Scissors
import random
rps = int(input(" What do you choose? Rock (0), Paper (1), Scissors (2): "))
n = ["Rock", "Paper", "Scissors"]
computer = random.randint(1, 3)
if rps >= 3 or computer < 0:
print("It's an invalid input")
elif rps == computer:
print("It's a tie game")
elif rps == 0 and computer == 2:
print(f" You: {n[rps]}\\n Computer: {n[computer]}\\n You Win")
elif rps == 2 and computer == 0:
print(f" You: {n[rps]}\\n Computer: {n[computer]}\\n Computer Wins")
elif rps > computer:
print(f" You: {n[rps]}\\n Computer: {n[computer]}\\n You Win")
elif computer > rps:
print(f" You: {n[rps]}\\n Computer: {n[computer]}\\n Computer Wins")