蓝桥杯算法训练VIP-字符串编辑-题解(Python代码)python开荒柘 摘要:简单题,列表的应用 ```python r='' while True: t=input() if '.'in t: r+="\n" r+=t break else…… 题解列表 2020年02月06日 0 点赞 6 评论 569 浏览 评分:6.0
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:简单题,就直接上代码了,不是最简,未优化 ```python def input_(): s = input() ls = input().split() metho…… 题解列表 2020年02月07日 0 点赞 0 评论 826 浏览 评分:9.9
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:不考虑'.'也是行的,有没有大佬,知道python如何控制读入指定字符结束输入的?指点一下,谢谢了。 ```python s= input().strip() command = input()…… 题解列表 2020年02月18日 0 点赞 3 评论 354 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码) 摘要:```python def oper(list1 , str1 ,element): temp = str(element[0]) if temp in list1 : …… 题解列表 2020年02月21日 0 点赞 0 评论 462 浏览 评分:0.0
小南解题--字符串编辑--62ms 摘要:a=list(input())b=list(input().split())wz=a.index('.')a=a[:wz+1]if b[1] in a: if b[0]==…… 题解列表 2022年08月26日 0 点赞 0 评论 727 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-python 摘要:解题思路:注意事项:参考代码:def Delete(s,arg): try: index=s.index(arg) string1=s[0:index] …… 题解列表 2023年01月10日 0 点赞 0 评论 69 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑-题解(Python代码)超简洁 摘要:解题思路:活用replace方法,将元素的增加和删除都转成元素的替换来实现;转换元素的查找,将查找最后一个元素转换成逆序后查找第一个元素;注意事项:这个网站的Python编译器版本过低,不然可以使用r…… 题解列表 2023年01月10日 0 点赞 0 评论 102 浏览 评分:9.9
python 1621字符串编辑 带解析 摘要:def de(): #删除 for i in range(len(s)): #找到要替换的 直接改为空字符 然后跳出 if E[1]==s[i]: s[i]=…… 题解列表 2023年03月01日 0 点赞 0 评论 56 浏览 评分:0.0
蓝桥杯算法训练VIP-字符串编辑,易懂 摘要:def D(n,a): if not a in n: return "目标不存在,请重新输入" else: return n.replace(a…… 题解列表 2023年04月02日 0 点赞 0 评论 58 浏览 评分:0.0
python解答,内容简洁易读 摘要:解题思路:根据题目要求一步一步来。注意事项:python中index(value)只能得到第一个重复元素的位置,需要翻转一下。参考代码:s = list(input().strip())command…… 题解列表 2024年01月24日 0 点赞 0 评论 50 浏览 评分:9.9