Reference Table in Python

Please assist? What will be the best way to reference/incorporate a python data file into a SQL db? Example of the data:

"# VCD Supplier Move To Bank
TRANSACTION_TYPE_SUPPLIER_MOVE_TO_BANK_AMOUNT = 857
TRANSACTION_TYPE_SUPPLIER_MOVE_TO_BANK_FEE = 858
TRANSACTION_TYPE_SUPPLIER_MOVE_TO_BANK_FEE_VAT = 859

`Preformatted text`# EasyPay Bill Payment
TRANSACTION_TYPE_EASY_PAY_BILL_PAYMENT = 860
TRANSACTION_TYPE_EASY_PAY_BILL_PAYMENT_KAZANG_COMMISSION = 861"

Or can I simply copy it and move into an excel sheet or SQL db?

Its just text. Do whatever you usually do with text when adding it to your database.
Not sure this is a python question.