finally forget

while not (what(you.see()) == what(you.get())):
 if location(self) != heaven[7]:
  hope = call_phone_number('9-11')
  try:
   remember()
  finally:
   forget()


Рецензии
Traceback (most recent call last):
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 31, in <module>
start(fakepyfile,mainpyfile)
~~~~~^^^^^^^^^^^^^^^^^^^^^^^
File "/data/user/0/ru.iiec.pydroid3/files/accomp_files/iiec_run/iiec_run.py", line 30, in start
exec(open(mainpyfile).read(), __main__.__dict__)
~~~~^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "<string>", line 3
hope = call_phone_number('9-11'))
^
SyntaxError: unmatched ')'

[Program finished]

Кира Фесенко   03.08.2026 20:24     Заявить о нарушении
import zlib
import random
import time
import os

key = 173
data = bytes([
    213, 49, 22, 29, 93, 111, 83, 166,
    182, 131, 155, 243, 117, 220, 204, 78,
    40, 208, 39, 173, 245, 14, 167, 38
])
target = zlib.decompress(bytes(b ^ key for b in data)).decode()
cols = len(target)
rows = 5
matrix = [[" "] * cols for _ in range(rows)]
chars = "ABCDEFGH12345678!@#$%^&*"

for step in range(rows + cols):
    for i in range(rows):
        for j in range(cols):
            if step - 2 < i + j <= step:
                matrix[i][j] = random.choice(chars)

    if step == rows + cols - 1:
        matrix[-1] = list(target)

    for row in matrix:
        print(" ".join(row))

    time.sleep(0.3)
    os.system("cls" if os.name == "nt" else "clear")

print(" ".join(target))

Мерали Сандар   03.08.2026 21:33   Заявить о нарушении