24 lines
636 B
Python
24 lines
636 B
Python
|
# from bin.test_1 import fun as pl
|
||
|
#
|
||
|
# print(pl())
|
||
|
|
||
|
|
||
|
from bin.Main.main import ex
|
||
|
from bin.Main.main import t
|
||
|
|
||
|
print(ex.ret(t))
|
||
|
|
||
|
|
||
|
# class exmp:
|
||
|
# def __init__(self):
|
||
|
# self.width = 533
|
||
|
# self.height = 533
|
||
|
# self.image_size = 50
|
||
|
# self.rows = 10
|
||
|
# self.columns = 10
|
||
|
# self.x_start = 3
|
||
|
# self.y_start = 3
|
||
|
# self.state_of_cell_array = [[0 for i in range(3)] for j in range(200)]
|
||
|
# self.small_image_array = [[0 for i in range(self.rows)] for j in range(self.columns)]
|
||
|
# self.large_image_array = [[0 for i in range(self.rows)] for j in range(self.columns)]
|