fix(curriculum):add a dot in the comments to reflect python output (#65550)

This commit is contained in:
AshwinAthappan
2026-01-29 07:43:42 -06:00
committed by GitHub
parent ea155bea9b
commit 3a57b773cb
2 changed files with 2 additions and 2 deletions
@@ -186,7 +186,7 @@ quote = "She said, \"Hello!\""
```py
developer = 'Jessica'
print('My name is ' + developer + '.') # My name is Jessica
print('My name is ' + developer + '.') # My name is Jessica.
```
Another way to concatenate strings is by using the `+=` operator. This is used to perform concatenation and assignment in the same step like this:
@@ -186,7 +186,7 @@ quote = "She said, \"Hello!\""
```py
developer = 'Jessica'
print('My name is ' + developer + '.') # My name is Jessica
print('My name is ' + developer + '.') # My name is Jessica.
```
Another way to concatenate strings is by using the `+=` operator. This is used to perform concatenation and assignment in the same step like this: