I have a variable called created = created[1],created[2], created[0]
that outputs a date in the form of [(12, 11, 2019)]. I want the date to be formatted like 12/11/2019. How would I got about changing the formatting in python.
created = time.localtime(user.created / 1000)
created = created[1],created[2], created[0]