Nov-09-2019, 07:07 PM
Hello
So here I am a beginner in Python and I have an exercise that asks me to replace the repetition with the list but I can't understand how to use it
Here is the code :

So here I am a beginner in Python and I have an exercise that asks me to replace the repetition with the list but I can't understand how to use it

Here is the code :
from random import * from math import * n=int(input("n=")) a=0 b=0 c=0 d=0 e=0 f=0 g=0 h=0 j=0 k=0 l=0 for i in range(1,n+1): r=randint(1,6)+randint(1,6) if r==2: a=a+1 if r==3: b=b+1 if r==4: c=c+1 if r==5: d=d+1 if r==6: e=e+1 if r==7: f=f+1 if r==8: g=g+1 if r==9: h=h+1 if r==10: j=j+1 if r==11: k=k+1 if r==12: l=l+1 print("2:"+str(a)) print("3:"+str(b)) print("4:"+str(c)) print("5:"+str(d)) print("6:"+str(e)) print("7:"+str(f)) print("8:"+str(g)) print("9:"+str(h)) print("10:"+str(j)) print("11:"+str(k)) print("12:"+str(l))So i have this idea :
from random import * from math import * n=int(input("n=")) list = [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]But I don't know how to use the list for the rest of the program
