Question: class Student: def __init__(self, name, gpa): self.name = name self.gpa = gpa s = Student( 'David' , 1.8) print( Name: + s.name + ,
class Student: def __init__(self, name, gpa): self.name = name self.gpa = gpa s = Student('David', 1.8) print("Name: " + s.name + ", GPA: " + str(s.gpa)) This was my code, but now i am asked to rewrite this Student class so that I am able to create a student in the following way: x = Student("Bob", 4.0)? How would I correct this code so it outputs x= Student("Bob", 4.0) in python?
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
