I have no idea how python 2.7 works. Is there a way for me to convert it to python 3?
recipients = ['email@email.com', 'email2@email.com']
sent = 1
print 'Email sent to: %s (%s)' % (", ".join(recipients), sent)
Specifically, i'm unsure about the print statement.