mirror of
https://github.com/frankwxu/AI4DigitalForensics.git
synced 2026-02-20 13:40:40 +00:00
9 lines
196 B
Python
9 lines
196 B
Python
class Student:
|
|
school = "High School"
|
|
|
|
def __init__(self, name, grade):
|
|
self.name = name
|
|
self.grade = grade
|
|
|
|
def study(self):
|
|
return f"{self.name} is studying!" |