摘要: def fan(): shu = str(input("请输入一个字符串")) #print(shu[::-1]) print(''.join(reversed(shu)))#fan() 阅读全文
posted @ 2021-01-07 10:49 虎彪彪 阅读(68) 评论(0) 推荐(0) 编辑
摘要: def zfc(): shu=str(input("请输入一个字符串")) print("字符串的长度为:",len(shu)) print("其中a的个数为",shu.count("a"))#zfc() 阅读全文
posted @ 2021-01-07 10:47 虎彪彪 阅读(310) 评论(0) 推荐(0) 编辑
摘要: def cz(): import random for i in range(10): a =int(input("请输入要猜的数字")) i =random.randint(0,100) if a>i: print("太大了,猜小点,再接再励!") elif a<i: print ("太小了,猜大 阅读全文
posted @ 2021-01-07 10:45 虎彪彪 阅读(160) 评论(0) 推荐(0) 编辑
摘要: def cfb(): j = 0 while j < 9: j += 1 # 内循环控制行 i = 0 while i < j: i += 1 print(i, '*', j, '=', (i * j), end='\t') print()cfb 阅读全文
posted @ 2021-01-07 10:36 虎彪彪 阅读(77) 评论(0) 推荐(0) 编辑
摘要: def he(): sum1=0 for i in range(2,100,2): if i%2==0: sum1+=i print("1-100的偶数和为",sum1) sum2=0 for j in range(1,100,2): if j%2!=0: sum2+=j print("1-100的 阅读全文
posted @ 2021-01-07 10:35 虎彪彪 阅读(497) 评论(0) 推荐(0) 编辑