print("hello, world")
# output 输出, print 打印
print语句,输出
以前的计算机是打孔计算机,为了延续这一习惯,所以现在依然用print指代输出的内容,也就是现在计算机运行出的结果。
单行注释,使用#
开头。#
后面的内容不会被当做代码,只能写在一行中。
print("Datawhale") # for the learner, 和学习者一起成长
# learn python the smart way v2
print("p2s")
# print("prepare to be smart")
多行注释,使用'''
或"""
包裹起来(头和尾都是3个)。单引号与双引号在Python中并无太大区别。
print("人生苦短,我用 Python")
'''
Python is powerful... and fast;
plays well with others;
runs everywhere;
is friendly & easy to learn;
is Open.
'''
<aside> 💡 注释的作用:
注释主要是用于对代码进行解释和说明,可以提升代码的可读性。
代码可读性:当初写这段代码的时候只有上帝和我知道它是干嘛的,现在只有上帝知道。
注释并不会被当做代码处理(# magic comment除外)。
🐳培养好习惯,在合理的地方写注释,来说明代码是在干什么。
</aside>
print("Datawhale")
用f(x)类比print语句
print → f
(x) →("Datawhale")
x 参数 → "Datawhale" 字符串 String
print()
的作用是将填入的内容显示在Console(终端)中,默认每次输入后会换行(等价于按了一次回车,或者C语言中的\\n
)
控制结尾的参数是end
<aside>
🛠 \\n
是转义字符,代表换行
类似的还有:\\t
按一次Tab键
</aside>