模拟硬币投掷结果代码错误
counts=int(input('请输入抛硬币的次数:'))print('开始抛硬币...')
c1 = 0
c2 = 0
i = 1
import random
while i <= counts:
r= random.randint(1,10)
print(r)
if r % 2 == 0:
c1 += 1
else:
c2 += 1
i += 1
print('一共模拟了',counts,'次实验')
print('正',c1,'次')
print('反',c2,'次')
试过用 d e jk 字母都不行,还有有大佬帮我看看random.choice(‘正’,‘反’)这样的用法是可以的么用来模拟硬币情况的话{:10_254:} if 和 else 后面的代码需要缩进,就是四个空格或者一个tab louxinghao 发表于 2021-8-16 16:02
if 和 else 后面的代码需要缩进,就是四个空格或者一个tab
哎呀效率好高,谢谢谢谢我居然犯了这么低级的错误。。。估计是手动缩进改了几下给忘了。。。
页:
[1]