Bootstrap

Python打字练习程序

Python打字练习程序

内容

1、随机产生60个英文字母,前面30个为小写字母,后面30个字母为大小写字母随机出现。

2、对照随机产生的字符串,练习打字,最后统计此次打字的正确率。

代码

  1. import random  
  2. import string  
  3.   
  4. ch_10 = ''.join(random.sample(string.ascii_lowercase,10))  
  5. ch_20 = ''.join(random.sample(string.ascii_lowercase,20))  
  6. ch_i = ch_10+ch_20  
  7. ch_e = ''.join(random.sample(string.ascii_letters,30))  
  8. str_out = ch_i+ch_e  
  9. print("随机字符如下:\n",str_out)  
  10. print("请输入字符串:\n")  
  11. str_in=input()  
  12. print("输入字符如下:\n",str_in)  
  13. zip_app = zip(str_in,str_out)  
  14. right = 0  
  15. for a,b in zip_app:  
  16.     if a == b:  
  17.         right += 1  
  18. print("正确率:\n",rig
;