a = input() t = a.split(" ") for i in t: print(i) 第11关:字符大小写转换 n =input() str1 = n.swapcase() print(str1) 第12关:查找指定字符 a = input() b =input() index = b.find(a) if index == -1: print('Not Found') else: print('index = {}'.format(index)) 第...
python头歌实训答案 头歌实训作业答案c语言 头歌编程练习1一、煤球数目1、题目2、解答思路3、代码二、统计最大的整数1、题目2、解题思路3、代码三、范围内37倍数的和1、题目2、思路3、代码 一、煤球数目1、题目题目描述:有一堆煤球,堆成三角棱锥形。具体: 第一层放 1 个, 第二层 3 个(排列成三角形),...