为了学习自然语言处理NLP,申请学校的老师给我发了100题,准备自己从零开始学python,记录一下。
https://nlp100.github.io/zh/
00. 反转字符串
将字符串”stressed”中的字符以逆序形式(从末尾到首部)重组为新的字符串。
我选择了切片法:https://www.jianshu.com/p/15715d6f4dad
将字符串”schooled”中的第1个、第3个、第5个、第7个字符连接在一起,组成新的字符串。
用join函数加切片就好了
a="schooled" print("".join(a[::2]))
交错地将“shoe”和“cold”中的字符顺次拼接,以得到字符串“schooled”。
字符串的连接参考:https://blog.csdn.net/turodog/article/details/80964307
a="shoe" b="cold" i=0 while i<4: print("".join(a[i]+b[i]),end='') i+=1
为了使不换行加了个end=''