Files
Python/Code/Python9Code/com/twowater/mtest2.py
2017-07-31 00:01:52 +08:00

18 lines
327 B
Python

#!/usr/bin/env python
# -*- coding: UTF-8 -*-
class UserInfo(object):
name = '两点水'
class UserInfo(object):
def __init__(self, name):
self.name = name
class UserInfo(object):
def __init__(self, name, age, account):
self.name = name
self._age = age
self.__account = account