Skip to content

Commit f1ff529

Browse files
authored
Update README.md
1 parent 1cd32e9 commit f1ff529

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ string = "Hello, World!" # This is a string
3030
list = [1, 2, 3, "a", "b", "c"] # This is a list
3131
tuple = (1, 2, "a", "b") # This is a tuple
3232
dictionary = {"name": "John", "age": 30} # This is a dictionary
33+
34+
```
3335
Control Flow: Python uses if, for, and while for control flow. For example:
34-
python
35-
Copy code
36+
3637
# Using if
38+
```
3739
x = 10
3840
if x > 0:
3941
print("Positive")

0 commit comments

Comments
 (0)