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 @Kyle98675198:
Unlock 4 remaining solutions by signing in and submitting your own entry