import random
import string


def random_str(len):
    letters = string.ascii_lowercase
    return ''.join(random.choice(letters) for x in range(len))

username = random_str(6)
name = "username=%s" %(username)
print(name)

 

相关文章:

  • 2022-03-02
  • 2022-02-07
  • 2022-01-11
  • 2021-09-19
  • 2021-04-19
  • 2021-12-22
  • 2021-11-29
猜你喜欢
  • 2021-12-23
  • 2022-12-23
  • 2021-12-13
  • 2021-05-22
  • 2021-08-15
  • 2021-12-14
  • 2021-06-08
相关资源
相似解决方案