Skip to content

Update README.md #127

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion exercises/06-String-Concatenation/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ print(one + two) # This will print 'ab' on the console.
Here, the variables `one` and `two` hold the individual strings `'a'` and `'b'`. When you use the `+` operator between them, it acts like a glue, sticking the strings together end-to-end. In this case, it joins `'a'` and `'b'`, resulting in the concatenated string `'ab'`, which gets printed to the console.

## 📝 Instructions:
1. Set the values for `my_var1` and `my_var2` so that, when concatenated, the code prints `Hello World` in the console.
1. Set the values for `my_var1` and `my_var2` so that, when concatenated, the code prints `Hello World` in the console. Don't forget to put the value of the variables in quotes.

## 💡 Hint:
+ If you need further explanation on how string **concatenation** works in Python, you can watch this clip: https://www.youtube.com/watch?v=28FUVmWU_fA&ab_channel=PortfolioCourses (`ctrl + click` on the link to open the video)