摘要:
class Car(): """一次模拟汽车的简单尝试""" def __init__(self, make, model, year): self.make = make self.model = model self.year = year self.odometer_reading = 0 d 阅读全文
摘要:
1 # greeter 7.11 2 3 # promt = "If you tell us who you are, we can personalize messages you see." 4 # promt += "\nWhat is your first name?" 5 # 6 # na 阅读全文