Skip to content

Instantly share code, notes, and snippets.

View TheFlyingDeutchMan's full-sized avatar

Tim Gerschner TheFlyingDeutchMan

  • New Zealand
  • 03:33 (UTC -12:00)
View GitHub Profile
@TheFlyingDeutchMan
TheFlyingDeutchMan / Jim'sPC_Store_DGT_Assignment.py
Last active March 8, 2020 02:02
Jim's Computer store assignment
# # This program is designed to interpret total cost of the computers bought with the
# TODO: DOCUMENTATION FOR SCRIPT
from pprint import pprint
product_names = ["Home Basic", "Office", "Gamer", "Studio"]
product_prices = [
900,
@TheFlyingDeutchMan
TheFlyingDeutchMan / coffeerun.py
Last active March 5, 2020 05:17
coffeerun script
#!/usr/bin/env python3
import os
from pprint import pprint
# clear the screen on script start
os.system('cls' if os.name == 'nt' else 'clear')
# SCRIPT EXPLANATION:
#