- 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关键字
- 列表[] 元组() 字典{} (哈希)
- 如何缩进
不要混合使用制表符和空格来缩进,因为这在跨越不同的平台的时候,无法正常工作。我 强烈建议 你在每个缩进层次使用 单个制表符 或 两个或四个空格 。
选择这三种缩进风格之一。更加重要的是,选择一种风格,然后一贯地使用它,即 只 使用这一种风格。