summaryrefslogtreecommitdiff
path: root/comp/work/9
diff options
context:
space:
mode:
Diffstat (limited to 'comp/work/9')
-rwxr-xr-xcomp/work/9/scores.py21
-rwxr-xr-xcomp/work/9/tanks.py10
2 files changed, 31 insertions, 0 deletions
diff --git a/comp/work/9/scores.py b/comp/work/9/scores.py
new file mode 100755
index 0000000..8abad3b
--- /dev/null
+++ b/comp/work/9/scores.py
@@ -0,0 +1,21 @@
+scores = [[]]
+for i in range(3):
+ tmp = []
+ for j in range(5):
+ tmp.append(int(input(f"num {j}: ")))
+ scores.append(tmp)
+
+scores.pop(0)
+for i in scores:
+ print(*i, "avg: ",(sum(i)/5), sep=" ")
+
+highest = scores[0][0]
+lowest = scores[0][0]
+for i in scores:
+ for j in i:
+ if j > highest:
+ highest = j
+ elif j < lowest:
+ lowest = j
+print(f"highest: {highest}, lowest: {lowest}")
+
diff --git a/comp/work/9/tanks.py b/comp/work/9/tanks.py
new file mode 100755
index 0000000..6584263
--- /dev/null
+++ b/comp/work/9/tanks.py
@@ -0,0 +1,10 @@
+board1 = [["."] * 10] * 10
+board2 = [["."] * 10] * 10
+
+for i in board1:
+ print(*i, sep=" ")
+for i in range(3):
+ board1[int(input("tank y: "))][int(input("tank x: "))] = "T"
+for i in board1:
+ print(*i, sep=" ")
+