Skip to content

Instantly share code, notes, and snippets.

View Jubix-pixel's full-sized avatar
💭
Studying

Jubix Jubix-pixel

💭
Studying
View GitHub Profile
class User:
"""A class that checks about a user."""
def __init__(self, first_name, last_name, age, job, sex):
"""Attributes of the user."""
self.first_name = first_name
self.last_name = last_name
self.age = age
self.job = job
self.sex = sex