Skip to content

Commit 5b00b30

Browse files
authored
Merge pull request 4GeeksAcademy#44 from UmiKami/09-Function-parameters
added solution
2 parents 61a33d7 + d09a84c commit 5b00b30

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)