Test/Python(20220101~)

Days17. 퀴즈 프로젝트

kiostory 2022. 2. 14. 23:04
class Question:
    def __init__(self, q_text, q_answer):
        self.text = q_text
        self.answer = q_answer
new_q = Question("abcdefg", "False")
print(new_q.text, new_q.answer)
저작자표시 비영리 변경금지 (새창열림)