#! /usr/bin/python3 # -*- coding:UTF-8 -*- class Student(object): def __init__(self, name): self.name = name print(Student('xiaozhi'))