Posts by Goncalves • 1 point
1 post
-
0
votes1
answer154
viewsQ: What Method to Send Email in Python?
for row in values: # Separei os valores da data em 3 variaveis temp. year = int(row[0][6:10]) moth = int(row[0][0:2]) day = int(row[0][3:5]) if day == d1.day and moth == d1.month and year ==…