7 lines
88 B
Python
7 lines
88 B
Python
#!/usr/bin/env python3
|
|
|
|
def postfix() -> dict:
|
|
postfix = dict()
|
|
|
|
return postfix
|