Skip to content

Commit 919f19c

Browse files
Create lesson3.py
1 parent aca0924 commit 919f19c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

lesson3.py

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# stings are just like variables byt you don't need to cut the code
2+
# to set one you'll do the same with the variables, example
3+
name = "Jhon Doe"
4+
age = 50
5+
# now printing is the same
6+
name = "Jhon Doe"
7+
age = 50
8+
print(f"My name is {name} and I am {age} years old.")
9+
# this lesson is shorter than i thougt

0 commit comments

Comments
 (0)