# Examples of printing strings with single and double quotes
print('strings go in single')
print("or double quotes")
# ['How are you today' ] enter a string in the print('How are you today') function using single quotes
# ["What Time is it" ] enter a string in the print("What time is it") function using double quotes
# printing an Integer with Python
print(299)
# printing a string made of Integer (number) characters with Python
print("2017")
# [600 ] print an Integer
# [2022 ] print a strings made of Integer characters
# [ ] Review code and Run
# initialize the variable
current_msg = "I am a string"
# print literal string
print("I am a string")
# print variable string
print(current_msg)
# [ ] Review code and Run
# assign a new string to the current_msg
current_msg = "Run this cell using Ctrl+Enter"
print(current_msg)
# [ ] run the example cells above then run this cell after completing the code as directed
# initialize the variable
current_msg = "I am a string"
print(current_msg)
test_value = 22
print(test_value)
test_value = "Joana"
print(test_value)
print(test_value)
test_value="Coding makes my haed hurt!"
print (test_value)
# [ ] assign a string value to a variable student_name
student_name="Braeden C"
# [ ] print the value of variable student_name
print(student_name)
# [ ] assign the student_name variable a different string value (a different name)
student_name="Culp Braeden"
# [ ] print the value of variable student_name
print (student_name)
# [ ] assign a 3rd different string value, to the variable name
student_name="Culp Braeden"
# [ ] print the value of variable name
print(student_name)
# [ ] assigning a value to a variable called bucket
("bucket")
# [ ] print the value of bucket
print("bucket")
# [ ] assign an Integer value (no quotes) to the variable bucket
"bucket"
# [ ] print the value of bucket
print("bucket")
# [ ] print integer 123 number
print(123)
# [ ] print string "123" number
print("123")