We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f13d2f8 commit 9bcc631Copy full SHA for 9bcc631
1- helloworld.py
@@ -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