Steven B. Combs' Git stevencombs
-
StevenCombs
- Columbus, IN
- Sign in to view email
- http://www.stevencombs.com
View OddorEven.py
# Function to determine if number is odd or even | |
# A Codecademy Python (Function and Control) assignment | |
# Dr. Steven B. Combs, coding novice | |
def is_even(x): | |
if x % 2 == 0: # If varialble is divisible by 2 without remainder | |
return "yep" # The variable is even | |
else: | |
return "nope" |
View CalculateMinimumPayment.py
# Function to determine the minimum payment | |
# A Codecademy Python (Something of Interest) assignment | |
# Dr. Steven B. Combs, coding novice | |
def hotel_cost(nights): | |
return nights * 140 | |
bill = hotel_cost(5) | |
def get_min(balance,rate): |
View MakePayment.py
# Number is Integer or Float - return Absolute Function | |
# A Codecademy Python (Make a Payment: Run It) assignment | |
# Dr. Steven B. Combs, coding novice | |
def hotel_cost(nights): | |
return nights * 140 | |
bill = hotel_cost(5) | |
def add_monthly_interest(balance): |
View SquareResortList.py
# Number is Integer or Float - return Absolute Function | |
# A Codecademy Python (List Sort) assignment | |
# Dr. Steven B. Combs, coding novice | |
start_list = [5, 3, 1, 2, 4] # Existing list | |
square_list = [] # Placeholder for new list | |
for number in start_list: # Loop until no more items in list | |
square_list.append(number ** 2) # Square each item in the list and append to square_list |
View DictionaryLists.py
# Number is Integer or Float - return Absolute Function | |
# A Codecademy Python (It's Dangerous to Go Alone! Take This) list and dictionary assignment | |
# Dr. Steven B. Combs, coding novice | |
inventory = {'gold' : 500, | |
'pouch' : ['flint', 'twine', 'gemstone'], # Assigned a new list to 'pouch' key | |
'backpack' : ['xylophone','dagger', 'bedroll','bread loaf']} | |
# Adding a key 'burlap bag' and assigning a list to it | |
inventory['burlap bag'] = ['apple', 'small ruby', 'three-toed sloth'] |
View PrintKeys.py
# Print every definition in a dictionary | |
# A Codecademy Python (This is KEY!) assignment | |
# Dr. Steven B. Combs, coding novice | |
webster = { | |
"Aardvark" : "A star of a popular children's cartoon show.", | |
"Baa" : "The sound a goat makes.", | |
"Carpet": "Goes on the floor.", | |
"Dab": "A small amount." | |
} |
View PrintEvenNumbersList.py
# Print every definition in a dictionary | |
# A Codecademy Python (Control Flow and Looping) assignment | |
# Dr. Steven B. Combs, coding novice | |
a = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13] | |
for number in a: | |
if number % 2 == 0: # If divisible by two, the number is even | |
print number |
View CountNumberFizz.py
# Print every definition in a dictionary | |
# A Codecademy Python (List + Functions) assignment | |
# Dr. Steven B. Combs, coding novice | |
zz = ["fizz","buzz","fizz"] # zz word list | |
fizz_count(zz) # Pass the zz word list to fizz_count function | |
def fizz_count(zz): # Defines the fizz_count function | |
count = 0 # Intialize variable and set to 0 | |
for string in zz: # Step through zz list |
View PrintInventoryCost.py
# Print Inventory and Cost of Fruit | |
# A Codecademy Python (Keeping Track of Produce) assignment | |
# Dr. Steven B. Combs, coding novice | |
for cost in prices: | |
print cost | |
print "price: " + str(prices[cost]) | |
print "stock: " + str(stock[cost]) | |
prices = { |