Skip to content

Commit 0e73529

Browse files
authored
Added folder
1 parent f23cf0e commit 0e73529

File tree

2 files changed

+25
-52
lines changed

2 files changed

+25
-52
lines changed

Tutorial 1.md

Lines changed: 0 additions & 52 deletions
This file was deleted.

Tutorials/Variables

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Variables
2+
3+
Write a string (This can be any combination of letters).
4+
5+
```python
6+
Hello
7+
```
8+
9+
Then add a space and an equal sign.
10+
11+
```python
12+
Hello =
13+
```
14+
15+
If you want an integer, add a space and put a number.
16+
17+
```python
18+
Hello = 1
19+
```
20+
21+
If you want a string, put the string in between a pair of quotation marks
22+
23+
```python
24+
Hello = "Variable"
25+
```

0 commit comments

Comments
 (0)