Code: Select all
# python-basic-review.py
nameOfStudent = "Lisa"
_age = 31
major_at_school = "Biology"
class_at_11_am_Tuesday = "Weather Science"
print(f "The student's name is {nameOfStudent} and her major is {major_at_school} and her age is {_age} and her class at 11 am Tuesday is {class_at_11_am_Tuesday}.")
print("The student's name is" + " " + nameOfStudent + " " + "and her major is" + " " + major_at_school + " " + "and her age is" + " " + _age + " " + "and her class at 11 am Tuesday is" + " " + class_at_11_am_Tuesday + ".")
# Nice Python review
