Files
Python/Code/Python10Code/com/twowater/mtest1.py
2017-09-11 09:44:22 +08:00

10 lines
180 B
Python

#!/usr/bin/env python3
# -*- coding: UTF-8 -*-
class User(object):
def __init__(self, name, age):
self.name = name;
self.age = age;
user=User('两点水',23)