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 49284ce commit 9026955Copy full SHA for 9026955
DataType.py
@@ -0,0 +1,28 @@
1
+a =1
2
+b =4
3
+
4
+print(bool(a==b))
5
+print(a==b)
6
7
+a = None
8
+print(bool(a))
9
10
+a = ()
11
12
13
+a = 0.0
14
15
16
+a =10
17
18
19
+print(type(234))
20
+print(type(9.99))
21
22
23
+b =10.2
24
+c = 'hello world'
25
26
+print(type(a))
27
+print(type(b))
28
+print(type(c))
0 commit comments