Hỏi đáp
Chia sẻ kiến thức, cùng nhau phát triển
em có 1 class
class player():
'Đây là class người chơi'
def __init__(self,ten,vitri):
self.ten = ten
self.vitri = vitri
def inten(self):
print(self.ten)
def invitri(self):
print(self.vitri)
làm cách nào để thêm 1 đối tượng từ bên ngoài chương trình, nếu có code thì hay quá
Bạn có thể tham khảo thêm bài này: OOP Python
https://www.tutorialspoint.com/python/python_classes_objects.htm
ngoài chương trình là viết ở file .py á =)