Skip to content

Instantly share code, notes, and snippets.

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

Jubilee Jubix-pixel

💭
Editing
  • LightStory Studios
  • Nigeria
  • 18:12 (UTC -12:00)
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