Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
error in class
#2
student_name() is set up as a class method. It shouldn't be called directly as you do on line 10. Instead, you should be capturing the instance created on line 9 and use that to call the method.

...
mystudent = Student("mohammad ", 1123456789," PhD Student")
print(mystudent.student_name())
Output:
name is :mohammad ,CNE is :1123456789 and Level is : PhD Student
Reply


Messages In This Thread
error in class - by non_name092 - Sep-02-2020, 05:07 PM
RE: error in class - by bowlofred - Sep-02-2020, 05:42 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  My class has name error message 357mag 3 2,323 Sep-04-2019, 03:29 PM
Last Post: snippsat
  Class Error OmarSinno 1 3,192 Sep-28-2017, 05:49 AM
Last Post: Mekire
  Error Type: <class 'OSError'> And Error Type: <class 'ValueError'> runnerpaul 1 3,667 Jul-18-2017, 03:08 PM
Last Post: Larz60+

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020