0


Python打字练习程序

Python打字练习程序

内容

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

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

代码

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

本文转载自: https://blog.csdn.net/cloudwdy/article/details/116983104
版权归原作者 cloudwdy 所有, 如有侵权,请联系我们删除。

“Python打字练习程序”的评论:

还没有评论