String ending definition of a named dictionary
(self)
| 21 | return f'{name} = {{' |
| 22 | |
| 23 | def endDict(self): |
| 24 | """ String ending definition of a named dictionary""" |
| 25 | return '}' |
| 26 | |
| 27 | def writeDict(self, dict, name, printValues = True): |
| 28 | """Write dictionary as a Python dictionary with the given name. |