Table of Contents
Runestone in social media:
Follow @iRunestone
Help support us:
Table of Contents
Book Index
Scratch ActiveCode
Instructor's Page
Progress Page
Navigation Help
Help for Instructors
About Runestone
Report A Problem
Extra Exercises
ΒΆ
Fill in the parameter list for g so that the invocations of g yield the return values specified
def g(): return 2*x + y + z print(g(3)) # should output 10 print(g(3, 2)) # should output 8 print(g(3, 2, 1)) #should output 9
Next Section - Tuples