print('watch for the cat')
print("This notebook is Deepnote by Sam Ola (10/2/2021)")
your_name = "Sam Ola"
print(your_name + " is using Python")
your_name = "Sam Ola"
print(your_name)
favorite_song = "no rules"
show_size = 13
lucky_number = 16
print(favorite_song)
print(show_size)
print(lucky_number)
favorite_song = "no rules"
show_size = "13"
lucky_number = "16"
print("my favorite song is " + favorite_song)
print("my shoe size is " + show_size)
print("my lucky number is " + lucky_number)
print(":]")
print([])
print("--------}")
# [ ] display the type of 'your name' (use single quotes)
print(type('Sam Ola'))
# [ ] display the type of "save your notebook!" (use double quotes)
print(type("save your notebook!"))
# [ ] display the type of "25" (use quotes)
print(type("25"))
# [ ] display the type of "save your notebook " + 'your name'
print(type("save your notebook " + "Sam Ola"))
# [ ] display the type of 25 (no quotes)
print(type(25))
# [ ] display the type of 25 + 10
print(type(25 + 10))
# [ ] display the type of 1.55
print(type(1.55))
# [ ] display the type of 1.55 + 25
print(type(1.55 + 25))
# assignments ***RUN THIS CELL*** before starting the section - add your variables and assign values here
# [ ] display the current type of the variable student_name
print(type("Sam Ola"))
# [ ] display the type of student_age
print(type(15))
# [ ] display the type of student_grade
print(type(10))
# [ ] display the type of student_age + student_grade
print(type(15 + 10))
# [ ] display the current type of student_id
print(type(1967247))
# assign new value to student_id
# [ ] display the current of student_id
print(type(7352935))
x = 823
y = 76
z = 4
print("Hello World!")
#i took away one of the two quotes on the end
print('strings have quotes and variables have names')
#i added quotation marks
print("I have $" + "5")
print('always save the notebook')
#i took away the double quotation mark on the right side and added a single quotation mark
# [ ] ASCII ART
print(--- /\ l l l l
- /--\ l l l
--- / \ l l)
print(
//
('>
/rr
*\))_