# review and run example using \n (new line)
print('Hello World!\nI am formatting print ')
# review and run code using \t (tab)
student_age = 17
student_name = "Hiroto Yamaguchi"
print("STUDENT NAME\t\tAGE")
print(student_name,'\t' + str(student_age))
# review and run code
# using \" and \' (escaped quotes)
print("\"quotes in quotes\"")
print("I\'ve said \"save your notebook,\" so let\'s do it!")
# using \\ (escaped backslash)
print("for a newline use \\n")
# [ ] print "\\\WARNING!///"
print("\\\WARNING!///")
# [ ] print output that is exactly (with quotes): "What's that?" isn't a specific question.
print("\"What's That?\" isn't a specific question.")
# [ ] from 1 print statement output the text commented below using no spaces
# One Two Three
# Four Five Six
print(" One \t Two \t Three \n Four \t Five \t Six")
# [ ] create and test pre_word()
pre_words.lower() = input("*enter a word that starts with 'pre': *")
def starts_with(Words):
if "pre" in Words:
print("This is a 'Pre' Word!")
else:
print("This word does not have 'Pre' in it")
starts_with(pre_words)
# [ ] review, run, fix
print("Hello \nWorld!")