Parsa

Profile Picture

@Parsaeynali

"Hi guys!"

Recent Tweets

Parsa May 30, 2026 at 12:42 PM
did you know in python using __slots__ can reduce memory usage and can make your code faster?
example:

class Person:
__slots__ = ['name', 'age']
def __init__(self, name, age):
self.name = name
self.age = age

note: you can not add anything to obj