tips about python
A string can be repeated several times by *:
1 'la' * 3 = 'lalala'
Codes are divided into blocks by indention, so pay attention to your hands.
Elseif is replaced by elif.
A string on the first logical line of a function is the docstring for that function. Note that DocStrings also apply to modules and classes which we will learn about in the respective chapters.
from module import object
You can output a list simply with:
1 list = [1, 2, 3, 4] 2 print(list)
作者:glob
出处:http://www.cnblogs.com/adera/
欢迎访问我的个人博客:https://blog.globs.site/
本文版权归作者和博客园共有,转载请注明出处。