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 aadb1c2 commit b140bfcCopy full SHA for b140bfc
Collaborative/hello.py
@@ -0,0 +1,21 @@
1
+print ('Hello, World!')
2
+print('Bob'*3)
3
+print('hello'.upper())
4
+print('GOODBYE'.lower())
5
+print("the lord of the rings".title())
6
+
7
+#add variables
8
+age=25
9
+hobby='baking'
10
+description="My age is {} and I like {}".format(age, hobby)
11
+print(description)
12
13
+"""This is my first
14
+piece of code"""
15
16
+#variables
17
+name='Jie Xin'
18
+favourite_food='pizza'
19
+description="My name is {} and my favourite food is {}".format(name, favourite_food)
20
21
0 commit comments