Computer Science (Year 8)
Python fundamentals — variables, constants, comments, I/O, lists, and the random module
Which of the following is an example of a constant in Python?
season = "summer"
PI = 3.14159
price = input("Enter price: ")
radius = 5
Next