Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
python 初学者 - 我正在上数据营的课程,在一次练习中,我使用“#”添加我的评论,运行代码后,评论没有显示我相信它应该是正确的。
我错过了什么还是锻炼屏幕有错误或什么?这个问题太简单了,我可能听起来很垃圾,而是在继续之前专注于学习基础知识。哈哈。
如果您的行以注释符号开头#,则 python 解释器将忽略此行。因此,如果您运行这些行:
#
print("Hello earth") # print("Hello moon")
输出将只有Hello earth
Hello earth