We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b669755 commit f7df1e7Copy full SHA for f7df1e7
Variables and Methods
@@ -0,0 +1,33 @@
1
+#!/bin/python3
2
+
3
+quote = "I do not know how to code in python"
4
5
+print(quote)
6
7
+print(quote.lower())
8
9
+print(quote.upper())
10
11
+print(quote.title())
12
13
+print(len(quote))
14
15
+name = "Iqra" # String
16
+age = 25 # Integer
17
+Score = 3.7 # float
18
+print("My name is "+name+" and I am " +str(age)+ " years old.")
19
20
21
22
23
24
25
26
+age+=1
27
+print(age)
28
29
30
31
+birthday = 1
32
+age += birthday
33
0 commit comments