summary refs log tree commit diff stats
path: root/python/code/1/3.txt
diff options
context:
space:
mode:
authorSudipto Mallick <smlckz@termux-alpine>2024-01-13 09:28:10 +0530
committerSudipto Mallick <smlckz@termux-alpine>2024-01-13 09:28:10 +0530
commit8fb719f58f91d1f1f187a1db974682fb3736ee05 (patch)
tree506e070c7900cc5e3fb31000dbd1a39e95809c61 /python/code/1/3.txt
parent53d75846cc95a3af5d90c01b5ef010818b4adcf7 (diff)
downloadzadania-8fb719f58f91d1f1f187a1db974682fb3736ee05.tar.gz
Changes to project structure of Python assignments
As was directed to remove assignments.
Diffstat (limited to 'python/code/1/3.txt')
-rw-r--r--python/code/1/3.txt17
1 files changed, 0 insertions, 17 deletions
diff --git a/python/code/1/3.txt b/python/code/1/3.txt
deleted file mode 100644
index 90ebdbe..0000000
--- a/python/code/1/3.txt
+++ /dev/null
@@ -1,17 +0,0 @@
->>> a, b = 3 + 2j, 4 - 3j
->>> a + b, a - b, a * b, a / b
-((7-1j), (-1+5j), (18-1j), (0.24+0.68j))
->>> -a, -b
-((-3-2j), (-4+3j))
->>> (a + b) / (a - b)
-(-0.4615384615384615-1.3076923076923077j)
->>> abs(a), abs(b)
-(3.605551275463989, 5.0)
->>> a.imag, a.real
-(2.0, 3.0)
->>> a.conjugate(), b.conjugate()
-((3-2j), (4+3j))
->>> from cmath import phase
->>> phase(a), phase(b)
-(0.5880026035475675, -0.6435011087932844)
-