Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
italojsoliveira committed Dec 15, 2023
1 parent 16a999d commit 5aa23be
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ I expect to write more than a thousand exercises with solutions. _This is a work

Write a program that reads the user name as an input and outputs a welcome message.

<details>
<summary>Click here to see a possible solution</summary>

user_name = input('Write your first name: ')

print('Welcome,', user_name, '!')

print('Welcome, {}!'.format(user_name))
</details>

#### Exercise 2

Write a program that reads the user input and outputs the following pieces of information about it:
Expand Down

0 comments on commit 5aa23be

Please sign in to comment.