10 lines
180 B
Python
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)
|