简单易于理解的字符串提取问题——Python 摘要:a=eval(input())b=list(input())c=eval(input())foriinb[c-1:]:&nb…… 题解列表 2025年01月16日 1 点赞 0 评论 24 浏览 评分:10.0
1048: [编程入门]自定义函数之字符串拷贝(python) 摘要:1048: [编程入门]自定义函数之字符串拷贝 从索引`m-1`开始切片即可 ~~~pythjon input() s = input() m = int(input()) print…… 题解列表 2024年10月24日 0 点赞 0 评论 63 浏览 评分:0.0
]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:def kaobei(my_str,m,n): a = [] for i in range(m-1,n): print(my_str[i],en…… 题解列表 2024年06月05日 0 点赞 0 评论 62 浏览 评分:9.9
无聊的星期六 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int main() { int n,m; char sn[1111]="";…… 题解列表 2024年04月27日 0 点赞 0 评论 70 浏览 评分:0.0
1048: [编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:简单参考代码:n = int(input())s = input()m = int(input())print(s[m - 1:])…… 题解列表 2024年01月08日 0 点赞 0 评论 46 浏览 评分:0.0
自定义函数之字符串拷贝 摘要:解题思路:用切片很简单注意事项:参考代码:n = int(input())L = str(input())m = int(input())print(L[m-1:n])…… 题解列表 2023年01月04日 0 点赞 0 评论 122 浏览 评分:9.9
自定义函数之字符串拷贝 简单易懂 摘要:解题思路:切片注意事项:参考代码:m=int(input())x=input()n=int(input())d=x[n-1:]print(d)…… 题解列表 2022年11月11日 0 点赞 0 评论 164 浏览 评分:9.9
基础解法(有手就行) 摘要:解题思路:python学一个星期就会了注意事项:无参考代码:def copy(b,a): c=0 for i in a: c+=1 if c>=b: print(i,end…… 题解列表 2022年06月09日 0 点赞 0 评论 296 浏览 评分:9.9
1048写题记录 摘要:解题思路:简单输入然后进行切片注意事项:目前还不会在一行里面没有空格的输入多个数据,为了避免输入数据太多导致出错的情况,将输入的两个数字分别作为切片的开始和结束来人为限制输出的字符串长度。参考代码:n…… 题解列表 2022年06月06日 0 点赞 1 评论 91 浏览 评分:0.0
[编程入门]自定义函数之字符串拷贝 摘要:解题思路:注意事项:参考代码:暴力破解:#切片运算2#暴力m=input() res=[m[2:]] for i in res: print(i,end=" ")第二种优化方式:# 注意…… 题解列表 2022年04月07日 0 点赞 0 评论 504 浏览 评分:9.9