Skip to content

Instantly share code, notes, and snippets.

def print_banner():
print("###### # #")
print("# # #### # # # # ###### # # # # #### # # ####")
print("# # # # ## # # # # # # # # # # ## # # #")
print("# # # # # # # #### ##### # ### # # # # # #")
print("# # # # # # # # # # # # # # # # # # # ###")
print("# # # # # ## # # # # # # # # # ## # #")
print("###### #### # # # # ###### # # # #### # # ####")
@mbjames
mbjames / pokedex_ascii.py
Created June 3, 2021 17:35
Pokedex Name In ASCII
def print_banner():
print("\n ######")
print(" # # #### # # ###### ##### ###### # #")
print(" # # # # # # # # # # # #")
print(" ###### # # #### ##### # # ##### ##")
print(" # # # # # # # # # ##")
print(" # # # # # # # # # # #")
print(" # #### # # ###### ##### ###### # #")
@mbjames
mbjames / shiny.py
Last active May 17, 2021 23:50
Shiny Pokemon Collection Tracker Program
shiny_pokemon = []
def add_pokemon():
add_mon = input("\n Pokemon to add: ").title()
shiny_pokemon.append(add_mon)
print("\n " + add_mon + " has been added.")
def remove_pokemon():
@mbjames
mbjames / shopping.py
Last active May 19, 2021 00:01
Shopping List Program
shopping_list = []
def add_item():
item = input("\n Item to add: ")
shopping_list.append(item)
print("\n " + item + " has been added.")
def remove_item():
@mbjames
mbjames / number.py
Created May 11, 2021 22:47
Random Number Generator
import random
def random_number():
print("\n Type (r) to generate a random number. (0 - 1000)")
print(" Type (q) to exit.")
answer = input("\n > ")
if answer == "r":
@mbjames
mbjames / menu.py
Created May 11, 2021 22:45
Fantasy Character Select Menu
w = "\n We will not survive this!"
x = "\n Size does not matter!"
y = "\n I have no fear!"
z = "\n Don't pick the dwarf!"
class Player:
@mbjames
mbjames / snap_ascii.py
Last active May 11, 2021 22:19
Pokemon Snap Lental Region Name In ASCII
def print_banner():
print("\n # ######")
print(" # ###### # # ##### ## # # # ###### #### # #### # #")
print(" # # ## # # # # # # # # # # # # # ## #")
print(" # ##### # # # # # # # ###### ##### # # # # # # #")
print(" # # # # # # ###### # # # # # ### # # # # # #")
print(" # # # ## # # # # # # # # # # # # # ##")
print(" ####### ###### # # # # # ###### # # ###### #### # #### # #")