用python写一个用名字轩盼盼组合成的人像代码 来自 江苏省苏州市 的网友分享 2024-03-10(°C) 24068 来自 江苏省苏州市 的网友 分享 2024-03-10(°C) 加入 收藏 复制 全文 ```pythonclass Person: def __init__(self, name): self.name = name def __str__(self): return f"人像:{self.name}"name = "轩盼盼"person = Person(name)print(person)``` python轩盼组合成 复制全文