Files
curriculum/1.solar-system/2.first-light/03.the-repl/starter/starter.py

11 lines
180 B
Python

def compute():
"""Return a tuple of 5 computed values, in this order:
1. 5 + 7
2. 100 - 25
3. 6 * 8
4. "Hello" + " " + "World"
5. 2 ** 10
"""
pass