<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; ">dear python community,<div><br></div><div><font size="5">i wrote the following program:</font></div><div><font size="5"><br></font></div><div><div style="font-size: x-large; ">from datetime import datetime</div><div style="font-size: x-large; ">now = datetime.now()</div><div style="font-size: x-large; ">current_month = now.month</div><div style="font-size: x-large; ">current_day = now.day</div><div style="font-size: x-large; ">current_year = now.year</div><div style="font-size: x-large; ">current_hour = now.hour</div><div style="font-size: x-large; ">current_minute = now.minute</div><div style="font-size: x-large; ">current_second = now.second</div><div style="font-size: x-large; ">print str(current_month) + '/' + str(current_day) + '/' + str(current_year) +' '+ </div><div style="font-size: x-large; ">print str(current_hour) + str(current_minute) + str(current_second)</div><div style="font-size: x-large; "><br></div><div style="font-size: x-large; ">and i got this error:</div><div style="font-size: x-large; "><span style="color: rgb(220, 20, 60); font-family: Monaco, 'Courier New', monospace; font-size: 13px; line-height: 19px; white-space: pre-wrap; background-color: rgb(23, 23, 26); ">Traceback (most recent call last):</span><br style="box-sizing: border-box; color: rgb(245, 245, 245); line-height: 19px; font-size: 13px; font-family: Monaco, 'Courier New', monospace; white-space: pre-wrap; "><span style="color: rgb(220, 20, 60); font-family: Monaco, 'Courier New', monospace; font-size: 13px; line-height: 19px; white-space: pre-wrap; background-color: rgb(23, 23, 26); ">  File "runner.py", line 125, in compilecode</span><br style="box-sizing: border-box; color: rgb(245, 245, 245); line-height: 19px; font-size: 13px; font-family: Monaco, 'Courier New', monospace; white-space: pre-wrap; "><span style="color: rgb(220, 20, 60); font-family: Monaco, 'Courier New', monospace; font-size: 13px; line-height: 19px; white-space: pre-wrap; background-color: rgb(23, 23, 26); ">  File "python", line 9</span><br style="box-sizing: border-box; color: rgb(245, 245, 245); line-height: 19px; font-size: 13px; font-family: Monaco, 'Courier New', monospace; white-space: pre-wrap; "><span style="color: rgb(220, 20, 60); font-family: Monaco, 'Courier New', monospace; font-size: 13px; line-height: 19px; white-space: pre-wrap; background-color: rgb(23, 23, 26); ">    print str(current_month) + '/' + str(current_day) + '/' + str(current_year) +' '+</span><br style="box-sizing: border-box; color: rgb(245, 245, 245); line-height: 19px; font-size: 13px; font-family: Monaco, 'Courier New', monospace; white-space: pre-wrap; "><span style="color: rgb(220, 20, 60); font-family: Monaco, 'Courier New', monospace; font-size: 13px; line-height: 19px; white-space: pre-wrap; background-color: rgb(23, 23, 26); ">                                                                                     ^</span><br style="box-sizing: border-box; color: rgb(245, 245, 245); line-height: 19px; font-size: 13px; font-family: Monaco, 'Courier New', monospace; white-space: pre-wrap; "><span style="color: rgb(220, 20, 60); font-family: Monaco, 'Courier New', monospace; font-size: 13px; line-height: 19px; white-space: pre-wrap; background-color: rgb(23, 23, 26); ">SyntaxError: invalid syntax</span></div><div style="font-size: x-large; "><span style="color: rgb(220, 20, 60); font-family: Monaco, 'Courier New', monospace; font-size: 13px; line-height: 19px; white-space: pre-wrap; background-color: rgb(23, 23, 26); "><br></span></div><div><font face="Monaco, Courier New, monospace"><span style="font-size: 13px; line-height: 19px; white-space: pre-wrap;">how can i write the last two lines correctly?</span></font></div></div><div><font face="Monaco, Courier New, monospace"><span style="font-size: 13px; line-height: 19px; white-space: pre-wrap;"><br></span></font></div><div><font face="Monaco, Courier New, monospace"><span style="font-size: 13px; line-height: 19px; white-space: pre-wrap;">thanks!</span></font></div><div><font face="Monaco, Courier New, monospace"><span style="font-size: 13px; line-height: 19px; white-space: pre-wrap;"><br></span></font></div><div><font face="Monaco, Courier New, monospace"><span style="font-size: 13px; line-height: 19px; white-space: pre-wrap;"><br></span></font></div></body></html>