I have a data which is coming from another source in the form of a nested list which looks as below:
data = [
["store1", 50, 02132020],
["store2", 20, 02112020],
["store3", 25, 02172020]
]
Here, 50 is the price.
And, 02152022 is the date.
When, I print the data, I get below error:
leading zeros in decimal integer literals are not permitted; use an 0o prefix for octal integers
How to deal with list whose elements may contain "leading zeros"?