Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit 989a756

Browse files
Update README.md
1 parent 114310e commit 989a756

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

‎exercises/09-Function-parameters/README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,20 @@ tutorial: "https://www.youtube.com/watch?v=uaiDxW4LJNA"
66

77
You can specify as many parameters as you want in a function.
88

9-
As a developer you are going to find functions with even 6 or 7 parameters all the time.
9+
As a developer, you are going to find functions with even 6 or 7 parameters all the time.
1010

1111
The names of the parameters don't matter, but you have to be **as explicit as you can** because these names will give clues to the other developers (or yourself in the future) about what is each parameter about.
1212

1313
## 📝 Instructions:
1414

15-
1. Please write the `render_person` function required to print a a string like the following:
15+
1. Please write the `render_person` function required to print a string like the following:
1616

17-
```py
17+
```text
1818
Bob is a 23 years old male born in 05/22/1983 with green eyes
1919
```
2020

21-
## 💡 Hint
21+
## 💡 Hints:
2222

2323
+ You have to do some string concatenation and return that string.
24+
25+
+ Also, you can Google "how to insert variables into a string python".

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /