I have this code:
range_studio_minuti_gennaio = 44640
for a in range(range_studio_minuti_gennaio):
x_a=int(a % 1440)
ora_genn = int(x_a/60)
min_genn= int(x_a%60)
for b in range(31):
giorno_genn = b
anno = 2014
mese_genn = 1
data = "giorno_genn,mese_genn,anno"
and the output for data is
runfile('C:/Users/Stefano/Downloads/WinPython-64bit-3.4.3.5/python-3.4.3.amd64/Scripts/untitled0.py', wdir='C:/Users/Stefano/Downloads/WinPython-64bit-3.4.3.5/python-3.4.3.amd64/Scripts')
File "C:/Users/Stefano/Downloads/WinPython-64bit-3.4.3.5/python-3.4.3.amd64/Scripts/untitled0.py", line 32
data = "giorno_genn,mese_genn,anno"
^
IndentationError: unindent does not match any outer indentation level
How can I solve this?