From 9eb63b951d03e283aa76ee0d9ce980dc4ea509ee Mon Sep 17 00:00:00 2001 From: unknown Date: Fri, 17 May 2024 18:11:53 +0530 Subject: [PATCH] updated --- contrib/pandas/excel_with_pandas.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/contrib/pandas/excel_with_pandas.md b/contrib/pandas/excel_with_pandas.md index 6902c3f..4e67964 100644 --- a/contrib/pandas/excel_with_pandas.md +++ b/contrib/pandas/excel_with_pandas.md @@ -21,10 +21,10 @@ d = pd.DataFrame(l) print(d) ``` Output: -'''python +```python Name Age 0 John 12 -''' +``` - **Note:** The above program can also be used for loading/retrieving the data. @@ -43,9 +43,9 @@ print(L) ``` Output: -'''python +```python Name Age 0 Bob 12 1 John 28 -''' +```