COBOL File Processing in Python (really)
Years ago (6? 7?) I did some data profiling in Python.
This required reading COBOL files with Python code.
Superficially, this is not really very hard.
- Python slice syntax will pick fields on of the record. For example: data[12:14].
#. Python codecs will convert from EBCDIC to Unicode without …
more ...