6 lines
125 B
Python
6 lines
125 B
Python
class Communication:
|
|
def __init__(self):
|
|
self.__x = 0
|
|
self.__data_recieve = 0
|
|
self.__output = ""
|