Welcome to Software Development on Codidact!
Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.
Activity for ibmx
Type | On... | Excerpt | Status | Date |
---|---|---|---|---|
Edit | Post #286044 | Initial revision | — | over 2 years ago |
Answer | — |
A: Comparing two excel files with Python based on changes Here's what I'd do, hope it still helps someone: ```python import pandas as pd t1 = [123,456,789,101,133] t1descr = ['Description' + str(i) for i in t1] table1 = pd.DataFrame({'name': t1, 'description': t1descr, 'amount': [123,456,666,101,133]}) t2 = [456,789,101,123,102] t2descr = [... (more) |
— | over 2 years ago |