鱼C论坛

 找回密码
 立即注册
查看: 1079|回复: 3

[已解决]为什么他打印出来的是20个一模一样的号码啊

[复制链接]
发表于 2021-7-28 13:05:29 From FishC Mobile | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
难道不应该是20个随机的吗
import random
a = []

def what():
    count1 = count2 = 0
    while count1 < 3:
        x = random.randint(65,91)
        a.append('{:c}'.format(x))
        count1 += 1
    while count2 < 3:
        x = random.randint(0,9)
        a.append(x)
        count2 += 1
    for i in range(6):
        print(a[i],end='')

print('请选择你的车牌')
count3 = 0
while count3 < 20:
    what()
    print(end=' ')
    count3 += 1
    if count3 % 4 == 0:
        print()
最佳答案
2021-7-28 13:18:53
a=[]位置不对  挪函数里面就好了
def what():
    a = []
    count1 = count2 = 0
    while count1 < 3:
        x = random.randint(65,91)
        a.append('{:c}'.format(x))
        count1 += 1
    while count2 < 3:
        x = random.randint(0,9)
        a.append(x)
        count2 += 1
    for i in range(6):
        print(a[i],end='')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-7-28 13:18:53 | 显示全部楼层    本楼为最佳答案   
a=[]位置不对  挪函数里面就好了
def what():
    a = []
    count1 = count2 = 0
    while count1 < 3:
        x = random.randint(65,91)
        a.append('{:c}'.format(x))
        count1 += 1
    while count2 < 3:
        x = random.randint(0,9)
        a.append(x)
        count2 += 1
    for i in range(6):
        print(a[i],end='')
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2021-7-28 13:38:28 From FishC Mobile | 显示全部楼层
wp231957 发表于 2021-7-28 13:18
a=[]位置不对  挪函数里面就好了

!真的可以,谢谢了!顺便可以问下是什么原理吗QWQ
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-7-28 13:59:12 | 显示全部楼层
fucku 发表于 2021-7-28 13:38
!真的可以,谢谢了!顺便可以问下是什么原理吗QWQ

你按我的代码修改一下,相信你自己就知道为什么了
import random
a = []

def what():
    count1 = count2 = 0
    while count1 < 3:
        x = random.randint(65,91)
        a.append('{:c}'.format(x))
        count1 += 1
    while count2 < 3:
        x = random.randint(0,9)
        a.append(x)
        count2 += 1
    print(a)    
    #for i in range(6):
        #print(a[i],end='')

print('请选择你的车牌')
count3 = 0
while count3 < 20:
    what()
    print(end=' ')
    count3 += 1
    if count3 % 4 == 0:
        print()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 22:29

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表