#Sam Ola
#9/29/2021
#I learned how to use different string formats in this lesson
# I had some problems with the last part on the Task 2 (multi-part) so i dont know if i got that one completly correct
# review and run the code
print("It's time to save your code")
print('I said to the class "sometimes you need to shut down and restart a notebook when cells refuse to run"')
print("Where's the homework?")
print('"Education is what remains after one has forgotten what one has learned in school" - Albert Einstein')
"Python".isalpha()
"3rd".isalnum()
"A Cold Stromy Night".istitle()
"1003".isdigit()
cm_height = "176"
print("cm height:",cm_height, "is all digits =",cm_height.isdigit())
print("SAVE".islower())
print("SAVE".isupper())
"Boolean".startswith("Bo")
"alphabetical".isalpha()
"Are spaces and punctuation Alphabetical?".isalpha()
alpha_test = input(("cheese").isalpha())