Skip to content

Commit d4b5fd8

Browse files
authored
Update README.md
1 parent 357368c commit d4b5fd8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ print(z)
6464

6565
The Python print statement is often used to output variables.
6666

67-
To combine both text and a variable, Python uses the + character:
67+
* To combine both text and a variable, Python uses the + character:
6868

6969
Example
7070
```
7171
x = "A"
7272
print("Python is " + x)
7373
```
7474

75-
You can also use the + character to add a variable to another variable:
75+
* You can also use the + character to add a variable to another variable:
7676

7777
```
7878
x = "life is "
@@ -81,13 +81,13 @@ z = x + y
8181
print(z)
8282
```
8383

84-
For numbers, the + character works as a mathematical operator:
84+
* For numbers, the + character works as a mathematical operator:
8585
```
8686
x = 78
8787
y = 98
8888
print(x + y)
8989
```
90-
If you try to combine a string and a number, Python will give you an error:
90+
* If you try to combine a string and a number, Python will give you an error:
9191

9292
```
9393
x = 20

0 commit comments

Comments
 (0)