From 037898d5c7d9a817457733ad386b4fd5e1d984b2 Mon Sep 17 00:00:00 2001 From: anupamishra333 Date: Sat, 18 Sep 2021 00:55:46 +0530 Subject: [PATCH] Update README.md --- 2-Working-With-Data/07-python/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/2-Working-With-Data/07-python/README.md b/2-Working-With-Data/07-python/README.md index 164f15c9..b71a46b7 100644 --- a/2-Working-With-Data/07-python/README.md +++ b/2-Working-With-Data/07-python/README.md @@ -55,7 +55,7 @@ Pandas is centered around a few basic concepts. Consider an example: we want to analyze sales of our ice-cream spot. Let's generate a series of sales numbers (number of items sold each day) for some time period: ```python -tart_date = "Jan 1, 2020" +start_date = "Jan 1, 2020" end_date = "Mar 31, 2020" idx = pd.date_range(start_date,end_date) print(f"Length of index is {len(idx)}")