OK. You can do this:
class Student:
def __init__(self, name, subjects=None):
self.name = name
self.subjects = subjects or ["maths", "physics"]
self.subjects = subjects or ["maths", "physics"] is equivalent to
if subjects:
self.subjects = subjects:
else:
self.subjects = ["maths", "physics"]