I'm creating a dataframe by using pd.read_excel() function. using this way to read a file
df = pd.read_excel(file_url, dtype = str, nrows=100, header=None, encoding="unicode_escape")
but in case of excel file have date formatted cells then after reading the file the values is look like 2021-08-07 14:17:20
but i want only 2021-08-07
.
If any one know please help me. Thanks !!