一,%字符串格式化 1,使用%s 后面一一对应输入对应的字符串,%s可以接受任何参数 print ("I am %s hobby is zhangsan"%'lishi') print ("I am %s hobby is %s"%('lishi','zhangsan')) I am lishi hobby is zhangsanI am lishi hobby is zhangsan 2,%d只能接受数字 msg = "I am %s my age is…
print语句默认是输出一行后添加一个换行符 >>> for item in ['apple','ibm','google','oracle']: ... print item ... apple ibm google oracle 在print语句的最后添加一个逗号(,),改变其默认行为: >>> for item in ['apple','ibm','google','oracle']: ... print item, ... apple ibm google or…
[1]a=[8,13,11,6,26,19,24]1)请输出列表a中的奇数项2)请输出列表a中的奇数 解:1) a=[8,13,11,6,26,19,24] print a[::2] Result:>>>[8, 11, 26, 24] 2) a = [8,13,11,6,26,19,24] b = [] for item in a: if item%2 !=0: b.append(item) else: continue print b Result:>>>[13, 1…