Random string generation with upper case letters and digits

前端 未结 30 3227
逝去的感伤
逝去的感伤 2020-11-22 02:51

I want to generate a string of size N.

It should be made up of numbers and uppercase English letters such as:

  • 6U1S75
  • 4Z4UKK
  • U911K4
30条回答
  •  無奈伤痛
    2020-11-22 02:52

    you can now use a new library (python >= 3.6) chancepy here

    from chancepy import Chance
    
    random_string = Chance.string(length=10, pool="someLettersAndNumbers123")
    

提交回复
热议问题