你的迪克很重要
#dick.py
class dick():
def __init__(self,length:float):
self.length = length
print("WoW! What a long DICK!")
def proctect():
self.length += 1.0
print("Your dick is under proctect!")
#main.py
from dick import dick
def main(length: float): #unit: mm
mydick = dick(length=length)
mydick.protect()
if __name__ == "__main__":
main(18.0)