I have data in xlsx format looks below.
| Column A | Column B |
|---|---|
| Cell 1 | ABCD |
| Cell 3 | 32,000,000 |
But when I read using pd.read_excel getting value of Cell 3 is 32000000. But I wants in same format 32,000,000. Please help to resolve this issue.
Expecting code which resolve my problem