You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
7 lines
200 B
Python
7 lines
200 B
Python
2 years ago
|
class Particle(str):
|
||
|
def __new__(cls, *args, **kwargs):
|
||
|
particle_str = args[0]
|
||
|
obj = str.__new__(cls, " " + particle_str + " ")
|
||
|
obj.pname = particle_str
|
||
|
return obj
|