1class Student:
2 def __init__(self):
3 pass
4
5
6 # The double underscore in the front makes it private
7 def __print_name(self):
8 return print("private")
9
10
11 # proof of use
12 def print_name(self):
13 return print("public")