Skip to content

Commit 9bcc631

Browse files
commit #`
1 parent f13d2f8 commit 9bcc631

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

1- helloworld.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
##this is the first piece of code every human being who know how to code have done
2+
3+
print("hello, world! \n")
4+
5+
6+
("------------------------------------- \n")
7+
#here is a thing python is pretty cool when it comes to making variables
8+
#and you can print them easily as well
9+
i = 6.6565656198 + 0.546546151
10+
print(i)
11+
12+
print("------------------------------------- \n")
13+
14+
#also you can combine multiple text variables as well
15+
16+
var1 = "my name is: "
17+
var2 = "muhammed"
18+
print(var1+var2)
19+
20+
21+
print(False)
22+

0 commit comments

Comments
 (0)