1. (程序题)
定义一个 Point 点类。它有两个实例成员变量 x 和 y,一个__init__() 方法,再定义一个 show方法,用于打印出 x 和 y 的值。输入两个值,用这两个值对来新创建的一个Point类对象进行初始化,然后并调用 show 方法。
用例1:
输入:
34
234
输出:
(34, 234)
用例2:
输入:
1
3
输出:
(1, 3)
class Point:#定义一个Point类
def __init__(self, x, y):
self.x = x#实例成员变量
self.y = y
def show(self):#show()用于打印x和y的值
print('({}, {})'.format(self.x, self.y))
x = int(input())
y = int(input())
p = Point(x, y)
p.show()
2. (程序题)
定义 Student 类,它有一个属性country(默认值设为“中国”),定义类方法 get_country 和 set_country分别用于显示和修改country 的值。先用get_country获取co