Python dataclasses
Simple challenge to extract fields from a Python class
Start file
from dataclasses import dataclass
@dataclass
class Student:
student_id: str
name: str
age: int
score: float
fields = ""
End file
from dataclasses import dataclass
@dataclass
class Student:
student_id: str
name: str
age: int
score: float
fields = "student_id,name,age,score"
View Diff
10c10
< fields = ""
---
> fields = "student_id,name,age,score"
Solutions by @pi-ratio:
Unlock 6 remaining solutions by signing in and submitting your own entry