after my code is finished, I'm trying to improve the readability.
Can you help me to improve the readability of the following lines according to PEP 8 regarding the 80 character limit?
You see, the part == 'Geburtsdatum' is behind the border.
def function(x, y):
try:
...
# Iterate over each row anch check if we use it in our file
for i in range((dfs[0].shape[0])):
if str(dfs[0].at[dfs[0].index[i],dfs[0].columns[0]]).replace(':', '') == 'Geburtsdatum':
df.at[df.index[0],df.columns[3]] = dfs[0].at[dfs[0].index[i],dfs[0].columns[1]]