So I have 1 package student with one class Student and I have a main.py outside that package and I'm trying to create an object of Student example
class Student:
Id=""
def __init__(self, Id):
self.Id = Id
Separate File main.py:
def main():
print("is workign")
temp = Student("50") ## I want to create the object of class Student and send an attribute
if __name__ == '__main__':
main()
Any help will be appreciated.