second

what is this

oh its to set a new section to write in.

insert a gallery

import random
print("Infinity Dice ๐ŸŽฒ")
  
sides = int(input("How many sides?: "))
playGame = "yes"
  
def rollDice(sides):
  print("You rolled ", random.randint(1,sides))
while playGame == "yes":
    rollDice(sides)
    playGame = input("Roll again?")
	

  
import random

def rollDice(sides):
  result = random.randint(1,sides)
  return result  
  
  def roll_6_and_8():
  roll_6_sided_dice = rollDice(6)
  roll_8_sided_dice = rollDice(8)
  health = roll_6_sided_dice * roll_8_sided_dice
  return health