Which of the following would properly create a new student? class Student: def __init__(self, name, gpa, grade): self.name = name self.gpa = gpa self.grade = grade (1 point) Responses s1 = Student(3.4, “Jorge”, 12) s1 = Student(3.4, “Jorge”, 12) s1 = Student(“Jorge”, 3.4, 12) s1 = Student(“Jorge”, 3.4, 12) s1 = Student( “Jorge”, 12) s1 = Student( “Jorge”, 12) s1 = Student(self,“Jorge”, 3.4, 12)
1 answer
The correct response is: s1 = Student("Jorge", 3.4, 12)