Exerpad
Exercise 10 · Chapter: FunctionsOptional+50 XP

Password Generator

Write a function make_password(word, number) that returns the word followed by the number followed by !.

Read a word and number, then print the password.

Example:

Input:

cat
42

Output:

cat42!
Need a hint?
3 available · costs 5 XP each
python

Output
Run your code to see the output here.