PythonProject

This commit is contained in:
Victor Alexandrovich Tsyrenschikov
2025-07-15 23:57:46 +05:00
parent 0da2850f0f
commit 0fc5b15016
15 changed files with 22244 additions and 1 deletions

6
test.py Normal file
View File

@@ -0,0 +1,6 @@
res = []
for i in range(1,2+1,10):
res.append([])
for j in range(i, i+10):
if j**2 % k != 0:
res[-1].append(j**2)