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.
0 parents commit 0e3a240Copy full SHA for 0e3a240
lesson3.py
@@ -0,0 +1,40 @@
1
+# variable
2
+x = 2
3
+y = 3.3
4
+z = "green"
5
+
6
+x = y = z = 20
7
+print("x",x)
8
+print("y",y)
9
+print("z",z)
10
+x = 5
11
+y = 15
12
13
14
15
16
+# identifier
17
18
+# def function ():
19
20
+# class pyae:
21
22
+# letters digits underscores
23
24
+pyae = 27
25
+p1 = 27
26
+p1_p2 = 27
27
+_p3 = 27
28
29
+# Python Datatypes
30
31
+# numbers
32
+# integer/float/complex
33
34
35
+# strings
36
+# List
37
+# Tuple
38
+# dictionary
39
40
0 commit comments