833. 字符串中的查找与替换 对于某些字符串 S,我们将执行一些替换操作,用新的字母组替换原有的字母组(不一定大小相同). 每个替换操作具有 3 个参数:起始索引 i,源字 x 和目标字 y.规则是如果 x 从原始字符串 S 中的位置 i 开始,那么我们将用 y 替换出现的 x.如果没有,我们什么都不做. 举个例子,如果我们有 S = "abcd" 并且我们有一些替换操作 i = 2,x = "cd",y = "ffff",那么因为 "
今天本来打算写个程序,替换字符串中固定的一个字符:将<全部替换成回车'\n' 于是,我写成这样 s='sdjj<ddd<denj,>' for x in s: if x=='<': x='\n' print(s) 然后输出还是 'sdjj<ddd<denj,>' 然后我就很纳闷,于是乎我又写成了这样 s='sdjj<ddd<denj,>' ss=list(s) for x in ss: if x=='<': x='\n' print(
python中字符串可以(且仅可以)使用成对的单引号.双引号.三个双引号(文档字符串)包围: 'this is a book' "this is a book" """this is a book""" 可在单引号包围的字符串中包含双引号,三引号等,但不能包含单引号自身(需转义) 'this is a" book' 'this is a"" book' 'this is a""
To some string S, we will perform some replacement operations that replace groups of letters with new ones (not necessarily the same size). Each replacement operation has 3parameters: a starting index i, a source word x and a target word y. The rule
# -*- coding:utf-8 -*- import sys,os txta = open('a.txt','r') str = '' for line in txta: str += line.strip().decode('utf-8') txta.close() for word in str: print word.encode('utf-8') 直接输出,是会乱码的,得先解码,再编码. 参考网址:http://blog.csdn.net/devil_2009/article/de