Skip to content

Commit 70d2b00

Browse files
authored
Update Tutorial 1
1 parent 2a04913 commit 70d2b00

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

Tutorial 1

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
## Variables
44

5-
To do variables first write a word or a combination of charecters.
5+
Write a string.
66

77
```python
88
Hello
99
```
1010

11-
Then add a space and an equal sign.
11+
Then add an equal sign.
1212

1313
```python
1414
Hello =
@@ -20,3 +20,9 @@ After that put an integer or a string.
2020
Hello = 1
2121
```
2222

23+
If you want to do a string, put the string in between a pair of quotation marks
24+
25+
```python
26+
Hello = "Variable"
27+
```
28+

0 commit comments

Comments
 (0)