[编程入门]自定义函数之字符串连接-题解(Python代码)简单描述 摘要:python简单描述一下就可以,字符串相加即可 ```python def connect(a,b): print(a+b) a=input() b=input() connect…… 题解列表 2019年11月30日 0 点赞 0 评论 1339 浏览 评分:9.9
1032: [编程入门]自定义函数之字符串连接(python) 摘要:#### 无需多言 ~~~python def main(): print(input() + input()) if __name__ == '__main__': …… 题解列表 2024年10月24日 0 点赞 0 评论 188 浏览 评分:9.9
能跑就行.jpg 摘要:解题思路:序列具有相加的功能,这个相加同我们数字之间的相加类似,但序列支持将两个类型相同的序列加在一起,使用‘+’符号进行操作。注意事项:虽然能跑但不严谨参考代码:a=input()b=input()…… 题解列表 2023年01月08日 0 点赞 0 评论 235 浏览 评分:9.9
非常容易理解(自定义函数之字符串连接) 摘要:解题思路:注意事项:参考代码:def person(h,s):#输入的参数 h=h+s#拼接字符串 print(h) #类型都为字符串 h=input() s=inp…… 题解列表 2022年04月06日 0 点赞 0 评论 828 浏览 评分:9.9
题目 1032: [编程入门]自定义函数之字符串连接 摘要:def fun(str_1, str_2): new_ste = str_1 + str_2 return new_stestr_1 = input()str_2 = input()rel…… 题解列表 2021年04月06日 0 点赞 0 评论 433 浏览 评分:7.3
自定义函数之字符串连接-题解(python) 摘要:参考代码:print(input()+input())#将两次输入的字符串相加并显示 …… 题解列表 2021年10月15日 0 点赞 0 评论 495 浏览 评分:7.3
[编程入门]自定义函数之字符串连接-题解(Python代码) python 摘要:```python a=input()#输入数据 b=input()#输入数据 print(a+b)#python 中 + 好可以 连接字符串(/滑稽)emmmmmmmmmmmmmmmmmmm…… 题解列表 2019年11月21日 0 点赞 0 评论 603 浏览 评分:2.0
简单算法,易理解 摘要:解题思路:a和b分别接收字符串,用加号拼接注意事项:参考代码:a=input()b=input()print(a+b)…… 题解列表 2024年11月14日 0 点赞 0 评论 235 浏览 评分:0.0
自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:def lmjp(a,b): print(a+b)a = input()b = input()lmjp(a,b)…… 题解列表 2024年06月03日 0 点赞 0 评论 153 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接d题解(肥肠de简单) 摘要:解题思路:giao注意事项:giao参考代码:a=input()b=input()print(f"{a} {b}")…… 题解列表 2024年03月24日 0 点赞 0 评论 145 浏览 评分:0.0