3 lines
100 B
Python
3 lines
100 B
Python
![]() |
def is_created_pk(pk):
|
||
|
return isinstance(pk, str) and pk.startswith('c') and pk[1:].isnumeric()
|