2021-09-13
作者:互联网
菜鸟自学Python 记录贴 1 2021.9.13
尽量做到每日一更,看看自己一个月后能有多少收获
使用的工具,Python 在线编辑器
http://www.pythontip.com/coding/run
关键字:print, def
print 这个函数,能够把()里的内容打出来
print('hello')
print() 看似一个很简单的操作,其实也是一个封装了很多行代码好的函数, 有()就是函数
- def
如果反复调用函数也会很麻烦,可以自己封装一个新函数
def greetings():
print('hello,welcome to my world')
print('let me show you something different')
greetings()
学习的重点就是能否提高对于学习材料的掌控感,让投入和反馈尽量高效,达到及时反馈。
标签:13,函数,Python,09,2021,print,def,greetings 来源: https://blog.csdn.net/ouhuanquan/article/details/120266735