MIT OPEN COURSEWARE CS 6.0001 PYTHON LECTURE 3

**

MIT OPEN COURSEWARE CS 6.0001 PYTHON LECTURE 3

**

Strings
function len:length of string
s = “abc” len s = 3
indexing:in Python, index at position 0.
using negative numbers to index
-1 == the last character in the string.
so on.
get a substring_slice into a string
slice strings using [start: stop:step]
step = 1 by default
can also omit numbers and leave just colons

EX:
s = “abcdefgh”
01234567
s[3:6] is same as s[3:6:1], evaluates to “def”
s[3:6:2] “df”
s[::] == s
s[::-1] is same as s[-1:[(len(s)+1) : -1], which turns the string around
s[4:1:-2] == “ec”
strings are “immutable”-cannot be modified.

s = “hello”
s[0] = y -> error
s = ‘y’ + s[1:len(s)] ->allowed, bound to new object
在这里插入图片描述

for loops
for var in range(4,6)->var = 4,5

EX:
在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值