When I do this:
data = input('data [d/m/Y]: ')
print(data)
data2 = datetime.strptime(data, "%d/%m/%Y")
print(data2)
It returns me like this:
data [d/m/Y]: 17/08/2018
17/08/2018
2018-08-17 00:00:00
How do I format the date being dd / mm / yyyy and the time together does not appear?