Computer Science (Year 8)
Python fundamentals — variables, constants, comments, I/O, lists, and the random module
What is the result of the following code? number = 5 number = number + 2 print(number)
5
2
7
10