5 lines
163 B
Python
5 lines
163 B
Python
from ..models.students import Student
|
|
|
|
def default_password(student: Student) -> str:
|
|
return f"{student.name.lower()[0]}{student.surname.lower()}{student.id}"
|