#!/usr/bin/env python3
# -*- coding: utf-8 -*-
class Make_Plane(object):
def __init__(self, color, whellunm):
self.color = color
self.whellunm = whellunm
def mv(self):
print("fie la...")
def gsh(self):
print("ge shi hua color is:%s,number is:%d" %(self.color, self.whellunm))
if __name__ == '__main__':
a = Make_Plane("green", 22)
a.gsh()



