从字符串中‘abcdef’中随机选取4个字符

思路:

  1. “随机”二字可以知道我们要使用random库,使用choice函数
  2. choice函数用法:从序列类型,例如列表中随机返回一个元素
  3. 我们知道了要把字符串变成列表
  4. 4个字符要用到while循环
    import string
    str='abcdefghij'
    list=list(str)
    print(list)
    
    
    结果:
    ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j']
    mport random
    import string
    str='abcdefghij'
    list=list(str)
    i=0
    while i<4:
        r=random.choice(list)
        print(r)
        i+=1

你可能感兴趣的:(python)