1.字符串 1.1 字符串相加 s1 = " ale x " s2 = " sb " print(s1 + s2) #识别空格 print(s1.strip() + s2.strip()) ale x sb ale xsb 1.2 字符串相乘 s1 = "alex " print(s1 * 5) alex alex alex alex alex note:str*int 1.3 字符串索引.切片 字符串索引,从0开始,空格也会输出 s = &qu…
一.格式化输出 name = input('请输入姓名') age = input('请输入年龄') hobby = input('请输入爱好') job = input('请输入你的工作') # msg = '我的姓名' + name + '我的年龄' + age....... # # msg = """------------ info of Alex Li ----------- # # Name : Alex Li # # Age : 22 # # job : Tea…
28:单词倒排 总时间限制: 1000ms 内存限制: 65536kB 描述 编写程序,读入一行英文(只包含字母和空格,单词间以单个空格分隔),将所有单词的顺序倒排并输出,依然以单个空格分隔. 输入 输入为一个字符串(字符串长度至多为100). 输出 输出为按要求排序后的字符串. 样例输入 I am a student 样例输出 student a am I 思路: 大模拟: 来,上代码: #include<cstdio> #include<string> #include&l…
Jams是一家酒吧的老板,他的酒吧提供2种体积的啤酒,a ml 和 b ml,分别使用容积为a ml 和 b ml的酒杯来装载. 酒吧的生意并不好.Jams发现酒鬼们都很穷,不像他那么土豪.有时,他们会因为负担不起a ml 或者 b ml酒的消费,而不得不离去.因此,Jams决定出手第三种体积的啤酒(较小体积的啤酒). Jams只有两种杯子,容积分别为 a ml 和 b ml,而且啤酒杯是没有刻度的.他只能通过两种杯子和酒桶间的互相倾倒来得到新的体积的酒. 倒酒步骤为: (1) …
The L1 Median (Weber 1909) 链接网址 Derived from a transportation cost minimization problem, the L1 median is defined to be any point which minimizes the sum of Euclidean distances to all points in the data set (fig.2). As with most median definitions, t…