File tree Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Expand file tree Collapse file tree 1 file changed +33
-0
lines changed Original file line number Diff line number Diff line change
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
+ print ("My name is " + name + " and I am " + str (age )+ " years old." )
20
+ print ("My name is " + name + " and I am " + str (age )+ " years old." )
21
+ print ("My name is " + name + " and I am " + str (age )+ " years old." )
22
+ print ("My name is " + name + " and I am " + str (age )+ " years old." )
23
+ print ("My name is " + name + " and I am " + str (age )+ " years old." )
24
+
25
+
26
+ age += 1
27
+ print (age )
28
+
29
+
30
+
31
+ birthday = 1
32
+ age += birthday
33
+ print (age )
You can’t perform that action at this time.
0 commit comments