We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 53485ff commit 545292eCopy full SHA for 545292e
informal/numbers/complex.py
@@ -0,0 +1,4 @@
1
+c = 3 + 4j
2
+print(c)
3
+print(type(c))
4
+print(1/c)
informal/numbers/division.py
@@ -0,0 +1,15 @@
+print('8 / 2 =', 8 / 2)
+print('8 // 2 =', 8 // 2)
+
+print('- 7 / 3 =', - 7 / 3)
5
+print('- 7 // 3 =', - 7 // 3)
6
7
+print('(-7) / 3 =', (-7) / 3)
8
+print('(-7) // 3 =', (-7) // 3)
9
10
+print('- (7 / 3) =', - (7 / 3))
11
+print('- (7 // 3) =', - (7 // 3))
12
13
+print('- 7 / (-3) =', - 7 / (-3))
14
+print('- 7 // (-3) =', -7 // (-3))
15
0 commit comments