11 lines
206 B
Python
11 lines
206 B
Python
|
|
from enum import Enum
|
||
|
|
|
||
|
|
|
||
|
|
class UnitRadioactivityFormat(str, Enum):
|
||
|
|
BECQUEREL = 'becquerel'
|
||
|
|
CURIE = 'curie'
|
||
|
|
RUTHERFORD = 'rutherford'
|
||
|
|
|
||
|
|
def __str__(self) -> str:
|
||
|
|
return str(self.value)
|