mirror of
https://github.com/karma-riuk/crab.git
synced 2025-07-04 21:28:12 +02:00
13 lines
299 B
Python
13 lines
299 B
Python
import pandas as pd
|
|
from pprint import pprint
|
|
|
|
if __name__ == "__main__":
|
|
df = pd.read_csv("./sample.csv")
|
|
|
|
for code, comment in zip(list(df.code_before), list(df.comment)):
|
|
print("CODE: ")
|
|
print(code)
|
|
print("COMMENT: ")
|
|
print(comment)
|
|
print("-"*80)
|