summary refs log tree commit diff stats
path: root/python/code/1/1.txt
diff options
context:
space:
mode:
authorSudipto Mallick <>2024-01-02 03:38:10 +0000
committerSudipto Mallick <>2024-01-02 03:38:10 +0000
commit7451edff7692e86c5238ff7bc6659825e242a84e (patch)
tree830fe25caf403869fe77df83bc44822ea6f5f11d /python/code/1/1.txt
parenta70e0a59817ce06a3dd23b3750ae16ee6660deaf (diff)
downloadzadania-7451edff7692e86c5238ff7bc6659825e242a84e.tar.gz
Quick backup, need to be rewritten
Diffstat (limited to 'python/code/1/1.txt')
-rw-r--r--python/code/1/1.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/python/code/1/1.txt b/python/code/1/1.txt
new file mode 100644
index 0000000..827a09a
--- /dev/null
+++ b/python/code/1/1.txt
@@ -0,0 +1,17 @@
+>>> 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
+