Skip to content

Commit f23cf0e

Browse files
authored
Added Print
1 parent 09120d3 commit f23cf0e

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Tutorial 1.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,28 @@ If you want a string, put the string in between a pair of quotation marks
2525
```python
2626
Hello = "Variable"
2727
```
28+
## Print
2829

30+
Write "print".
31+
32+
```python
33+
print
34+
```
35+
36+
After that, add a pair of parentheses.
37+
38+
```python
39+
print()
40+
```
41+
42+
If you want it to print a variable, type the variable inside the parentheses
43+
44+
```python
45+
print()
46+
```
47+
48+
If you want it to print a string, put a pair of quotation marks and inbetween that, add a string.
49+
50+
```python
51+
print("")
52+
```

0 commit comments

Comments
 (0)