From 034f9320e1942496d253b6bc2c31e20b9c3ec1c8 Mon Sep 17 00:00:00 2001 From: Mateusz779 <73058906+Mateusz779@users.noreply.github.com> Date: Sun, 3 Apr 2022 17:41:33 +0200 Subject: [PATCH] Update main.py --- main.py | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/main.py b/main.py index 75cbe4d..2ceeb35 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,7 @@ pointer = 0 cell = [] -code="" +code = "" + def main(): """Main function""" @@ -9,7 +10,7 @@ def main(): print("\n\n") if code != "": for i in range(len(code)): - interpreter(code[i] ,i) + interpreter(code[i], i) print("\n\n") @@ -21,15 +22,17 @@ def interpreter(znak, i): - decrement (decrease by one) the byte at the data pointer. . output the byte at the data pointer. , accept one byte of input, storing its value in the byte at the data pointer. - [ if the byte at the data pointer is zero, then instead of moving the instruction pointer forward to the next command, jump it forward to the command after the matching ] - ] if the byte at the data pointer is nonzero, then instead of moving the instruction pointer forward to the next command, jump it back to the command after the matching [.""" + [ if the byte at the data pointer is zero, then instead of moving the instruction pointer forward to the next command, + jump it forward to the command after the matching ] + ] if the byte at the data pointer is nonzero, then instead of moving the instruction pointer forward to the next command, + jump it back to the command after the matching [.""" global code, cell, pointer match znak: case ">": pointer += 1 case "<": pointer -= 1 - if pointer<0: + if pointer < 0: pointer = 0 case "+": try: @@ -44,7 +47,7 @@ def interpreter(znak, i): cell.append(0) cell[pointer] -= 1 case ".": - if cell[pointer]==10 or cell[pointer]==13: + if cell[pointer] == 10 or cell[pointer] == 13: print("\n") else: print(chr(cell[pointer]), end="") @@ -55,9 +58,10 @@ def interpreter(znak, i): loop_end = code.find("]", i) if cell[pointer] != 0: loop_end = code.find("]", i) - for a in range(0,cell[pointer]-1): - for j in range(1,loop_end-loop_begin): + for a in range(0, cell[pointer]-1): + for j in range(1, loop_end-loop_begin): interpreter(code[loop_begin + j], loop_begin + j) + if __name__ == '__main__': main()