Hi there, Vitor here 👋
class Student:
def __init__(self):
self.name = 'Vitor Hugo'
self.pronouns = 'He/Him'
self.role = 'High School Student'
self.language_spoken = ['pt_BR', 'en_US']
self.code = ['Python', 'JavaScript', 'C++']
self.tools = ['React', 'Node']
def learn(self):
learning = True
content = ['Python', 'C++', 'Data Science', 'Math', 'Physics', 'Chemistry', 'Machine Learning']
vh = Student()
while True:
vh.learn()