summary refs log tree commit diff stats
path: root/python/code/1
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
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')
-rw-r--r--python/code/1/1.txt17
-rw-r--r--python/code/1/2.txt52
-rw-r--r--python/code/1/3.txt17
-rw-r--r--python/code/1/4.py8
-rw-r--r--python/code/1/6.py4
-rw-r--r--python/code/1/7.py5
6 files changed, 0 insertions, 103 deletions
diff --git a/python/code/1/1.txt b/python/code/1/1.txt
deleted file mode 100644
index 827a09a..0000000
--- a/python/code/1/1.txt
+++ /dev/null
@@ -1,17 +0,0 @@
->>> 2 + 3
-5
->>> 1 + 2 * 3 - 4
-3
->>> 12 * 5 / 3 * 2
-40.0
->>> 5 / 8
-0.625
->>> 23 // 7
-3
->>> 17 % 5 - 1
-1
->>> 3 * (4 + 5) + 5
-32
->>> (2 + (7 + 2) / 3 - 4) / (-2 / 7 + (19 - 3 * 4) / 8)
-1.696969696969697
-
diff --git a/python/code/1/2.txt b/python/code/1/2.txt
deleted file mode 100644
index 08c95b5..0000000
--- a/python/code/1/2.txt
+++ /dev/null
@@ -1,52 +0,0 @@
->>> import math
->>> math.cos(math.pi / 3)
-0.5000000000000001
->>> math.sin(math.pi / 6)
-0.49999999999999994
->>> math.tan(math.pi / 4)
-0.9999999999999999
->>> math.pow(1.123, 0.123)
-1.0143707323622344
->>> math.exp(379)
-3.959210944514706e+164
->>> math.log(10, 2)
-3.3219280948873626
->>> math.hypot(3, 4)
-5.0
->>> math.hypot(3, 4, 5)
-7.0710678118654755
->>> math.degrees(math.pi / 4)
-45.0
->>> math.radians(90) / math.pi
-0.5
->>> [*(print(i, math.sqrt(i)) for i in range(1, 10))]
-1 1.0
-2 1.4142135623730951
-3 1.7320508075688772
-4 2.0
-5 2.23606797749979
-6 2.449489742783178
-7 2.6457513110645907
-8 2.8284271247461903
-9 3.0
-[None, None, None, None, None, None, None, None, None]>>> math.modf(12.5)
-(0.5, 12.0)
->>> math.gamma(6)
-120.0
->>> [math.floor(x) for x in [12.3, -12.3]]
-[12, -13]
->>> [math.ceil(x) for x in [12.3, -12.3]]
-[13, -12]
->>> [math.trunc(x) for x in [12.3, -12.3]]
-[12, -12]
->>> math.cbrt(8), math.cbrt(10)
-(2.0, 2.154434690031884)
->>> math.dist((1, 1), (2, 3))
-2.23606797749979
->>> math.dist((1, 1), (5, 4))
-5.0
->>> math.isqrt(23)
-4
->>> math.exp2(10)
-1024.0
-
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)
-
diff --git a/python/code/1/4.py b/python/code/1/4.py
deleted file mode 100644
index 7579373..0000000
--- a/python/code/1/4.py
+++ /dev/null
@@ -1,8 +0,0 @@
-from math import gcd
-a = int(input('Enter first number: '))
-b = int(input('Enter second number: '))
-print('Sum:', a + b)
-print('Product:', a * b)
-print('Difference:', a - b)
-print('GCD:', gcd(a, b))
-
diff --git a/python/code/1/6.py b/python/code/1/6.py
deleted file mode 100644
index e3a3cd0..0000000
--- a/python/code/1/6.py
+++ /dev/null
@@ -1,4 +0,0 @@
-a = float(input('Enter first number: '))
-b = float(input('Enter second number: '))
-print('Concatenation of integer parts:', ''.join(str(int(i)) for i in (a, b)))
-print('Sum rounded to 2 decimal places:', round(a + b, 2))
diff --git a/python/code/1/7.py b/python/code/1/7.py
deleted file mode 100644
index 37ecfa3..0000000
--- a/python/code/1/7.py
+++ /dev/null
@@ -1,5 +0,0 @@
-a = int(input('Enter first number: '))
-b = int(input('Enter second number: '))
-q, r = a // b, a % b
-q1d, r1d = q % 10, r % 10
-print(f'The one’s place digits of quotient and remainder are {"" if q1d == r1d else "not"} equal.')