printing
Arrange blocks to assign the string Chemistry
to the variable course
and then ask what class comes next.
Drag from here
- 'Chemistry' = course
- course = 'Chemistry'
- print("What is after {course}?")
- print(f"What is after {course}?")
- course = Chemistry
- print f'What is after {course}?'
Construct your solution here