摘要: __author__ = '12711'#-*- coding:utf-8 -*-class Dog(object): def __init__(self,name,age): self.name=name self.age=age def Yell(self,cry): self.cry=cry 阅读全文
posted @ 2018-10-24 16:45 知冬 阅读(130) 评论(0) 推荐(0) 编辑
摘要: __author__ = '12711'#-*- coding:utf-8 -*-'''让用户输入数字相加,若用户输入有误,返回错误while True: num1 = input('num1:') num2 = input('num2:') try: num1 = int(num1) num2 = 阅读全文
posted @ 2018-10-24 16:42 知冬 阅读(164) 评论(0) 推荐(0) 编辑