Skip to content
Permalink
8adfcadc60
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
14 lines (7 sloc) 363 Bytes
from publishing import caloriesTopic
def input_topics():
print("Workout metrics to view: [Calories Burnt,Steps Taken,Blood Pressure,Heart Rate, All]")
select_input = input("What workout metric would you like to see:")
if select_input == "Calories Burnt".lower().upper().capitalize():
print(caloriesTopic())
print(input_topics())