1)字符串的基本用法——合并
首先,什么是字符串?
用单引号、双引号或者三引号(特别长的字段)引用的文字就是字符串。
what_he_does = ' plays '
his_instrument = 'guitar'
his_name = 'Robert Johnson'
artist_intro =his_name + what_he_does + his_instrument
print(artist_intro)
结果如下:
Robert Johnson plays guitar
注意,plays在引号中前后都空了1格,否则结果如下图
Robert Johnsonplaysguitar
2)变量的合并
若变量是不同的数据类型(用type()函数查看数据类型),需将它们转化为同一数据类型。
num = 1
string = '1'
num2 = int(string)
print(num + num2)
将字符串通过int转化为整数,从而可与num合并,进行运算,结果如下
2
字符串相乘
word = 'a loooooong word'
num = 12
string = 'bang!'
total = string * (len(word)-num) #即字符串'bang!'重复4(16-12)遍
print(total)
得到下图:
bang!bang!bang!bang!
3)字符串的分片/截取
name = 'My name is Mike'
print(name[11:15])
Mike
word = 'friends'
find_the_evil_in_your_friends = word[0] +word[2:4] + word[-3:-1]
print(find_the_evil_in_your_friends)
fiend
在实际项目中,若有大量文件需要统一命名方式,可用切片。