[编程入门]自定义函数之字符串连接-题解(Python代码) python 摘要:```python a=input()#输入数据 b=input()#输入数据 print(a+b)#python 中 + 好可以 连接字符串(/滑稽)emmmmmmmmmmmmmmmmmmm…… 题解列表 2019年11月21日 0 点赞 0 评论 503 浏览 评分:2.0
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:两个输入,然后直接用+号连接ok,python就是简洁,。。。。。。。。。。 ``` list1 = input() list2 = input() print(list1+list2…… 题解列表 2019年11月24日 0 点赞 0 评论 625 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Python代码)简单描述 摘要:python简单描述一下就可以,字符串相加即可 ```python def connect(a,b): print(a+b) a=input() b=input() connect…… 题解列表 2019年11月30日 0 点赞 0 评论 1238 浏览 评分:9.9
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:a=str(input()) b=str(input()) print(a+b) This is my code. Is easy. The string can plus. …… 题解列表 2020年06月20日 0 点赞 0 评论 401 浏览 评分:0.0
[编程入门]自定义函数之字符串连接-题解(Python代码) 摘要:解题思路:emmmemm注意事项:参考代码:a=input()b=input()print(a+b)#非要让我写很多#非要让我写很多#非要让我写很多#非要让我写很多…… 题解列表 2020年12月10日 0 点赞 0 评论 222 浏览 评分:0.0
题目 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 评论 364 浏览 评分:7.3
自定义函数之字符串连接-题解(python) 摘要:参考代码:print(input()+input())#将两次输入的字符串相加并显示 …… 题解列表 2021年10月15日 0 点赞 0 评论 388 浏览 评分:7.3
[编程入门]自定义函数之字符串连接-题解(python代码) 摘要:解题思路:“+”将两个字符串连接。注意事项:参考代码:a = input()b=input()print(a+b)…… 题解列表 2022年01月25日 0 点赞 0 评论 519 浏览 评分:0.0
【露离】单行代码,编写题解 1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:def main(): print(input()+input())main()…… 题解列表 2022年02月05日 0 点赞 0 评论 94 浏览 评分:0.0
非常容易理解(自定义函数之字符串连接) 摘要:解题思路:注意事项:参考代码:def person(h,s):#输入的参数 h=h+s#拼接字符串 print(h) #类型都为字符串 h=input() s=inp…… 题解列表 2022年04月06日 0 点赞 0 评论 777 浏览 评分:9.9