diff options
author | Sudipto Mallick <smlckz@termux-alpine> | 2024-01-13 09:28:10 +0530 |
---|---|---|
committer | Sudipto Mallick <smlckz@termux-alpine> | 2024-01-13 09:28:10 +0530 |
commit | 8fb719f58f91d1f1f187a1db974682fb3736ee05 (patch) | |
tree | 506e070c7900cc5e3fb31000dbd1a39e95809c61 /python/code/1/1.txt | |
parent | 53d75846cc95a3af5d90c01b5ef010818b4adcf7 (diff) | |
download | zadania-8fb719f58f91d1f1f187a1db974682fb3736ee05.tar.gz |
Changes to project structure of Python assignments
As was directed to remove assignments.
Diffstat (limited to 'python/code/1/1.txt')
-rw-r--r-- | python/code/1/1.txt | 17 |
1 files changed, 0 insertions, 17 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 - |