def __init__(self,name, age, telephone, employee_id):
self.name = name
self.age = age
self.telephone = telephone
self.student_id = employee_id
@staticmethod
def generate_id():
'create a random new id, which is any number between 1,000 and 5000'
'return id as a string'
"Example '2050' "
I have the above code and need to generate and return the random Ids as a string, can someone help please. I am very new to Python