I’m trying to complete the thread shed project in the computer science path. It’s in module 5 and right after step 8, i print out transactions_clean and get every transaction copied 2x.
transactions_clean =
for transaction in daily_transactions_split:
transaction_clean =
for data_point in transaction:
transaction_clean.append(data_point.strip(" "))
transactions_clean.append(transaction_clean)
i watched the video just to be sure it was correct. but still, every transaction in the list is tripled