随便写了一个参考一下吧:
class Role:def __init__(self, name, height, weapon):
selfname = name
selfheight = height
selfweapon = weapon
def printInfo(self):
print('名字:%s 身高:%d 武器:%s' % (selfname, selfheight, selfweapon))
a = Role('孙悟空',170,'金箍棒')
b = Role('猪八戒',165,'九齿钉耙')
aprintInfo()
bprintInfo()
a=input("input:")
b=str(a)
result=""
for i in b:
result=result + i +","
print result
以上就是关于用Python编写全部的内容,包括:用Python编写、用python编写程序、等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)