We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 61a33d7 + d09a84c commit 5b00b30Copy full SHA for 5b00b30
exercises/09-Function-parameters/solution.hide.py
@@ -0,0 +1,7 @@
1
+# Your code goes here:
2
+def render_person(name, birthdate, eye_color, age, sex):
3
+ return name +" is a "+ str(age) +" years old " + sex +" born in " + birthdate + " with "+eye_color +" eyes"
4
+
5
6
+# Do not edit below this line
7
+print(render_person('Bob', '05/22/1983', 'green', 23, 'male'))
0 commit comments