📜  语句结束预期的python代码示例

📅  最后修改于: 2022-03-11 14:46:58.603000             🧑  作者: Mango

代码示例1
x = "eee"

# do not do this : print x
# instead :
print(x)