概述
- a**b==a的b次方 //强制浮点除法
- 字符串 'abc' 3 * 'ab'== 'ababab' 'a'+str(123) == 'a123'
- len('abc') ==3
indexing 'abc'[0] == 'a' 'abc'[-1] == 'c'
Slicing 'abc'[1:3] == 'bc' [i:j:k] 最后一个参数 step 为负时,表示截取结果按照逆序排列
4. in
The operators in
and not in
test for collection membership (a 'collection' refers to a string, list, tuple or dictionary - don't worry, we will cover lists, tuples and dictionaries soon!). The expression
Note this returns the negation of element in coll
- that is, the expression element not in coll
is equivalent to the expression not (element in coll)
.
5.
week 2
- elif关键字
- 列表[] 元组() 字典{} (哈希)
- 如何缩进
不要混合使用制表符和空格来缩进,因为这在跨越不同的平台的时候,无法正常工作。我 强烈建议 你在每个缩进层次使用 单个制表符 或 两个或四个空格 。
选择这三种缩进风格之一。更加重要的是,选择一种风格,然后一贯地使用它,即 只 使用这一种风格。
转载于:https://www.cnblogs.com/fusama/p/4586741.html
最后
以上就是潇洒夏天为你收集整理的Python学习过程中知识误区总结的全部内容,希望文章能够帮你解决Python学习过程中知识误区总结所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复