inherit-non-class Attempted to inherit something that is not a class. too-many-function-arguments Too many arguments have been provided to a function call. too-many-positional-arguments-before-star ...
def student_data(name, roll_no, age, marks): print(f"Student {name} with roll_no {roll_no} , with age {age}, got {marks}") # student_data(roll_no=18, age=19, marks=25 ...