At Westonci.ca, we make it easy for you to get the answers you need from a community of knowledgeable individuals. Our platform connects you with professionals ready to provide precise answers to all your questions in various areas of expertise. Get immediate and reliable solutions to your questions from a community of experienced professionals on our platform.

5.4.6 Rolling Dice
How do i get the correct codes for this?

Sagot :

Answer:

for i in range(1,7):

   for j in range(1,7):

       print (str(i)+","+str(j))

Explanation:

In this exercise we have to use the knowledge of the python language to write the code, so we have to:

The code is in the attached photo.

So to make it easier the code can be found at:

for i in range(1,7):

  for j in range(1,7):

      print (str(i)+","+str(j))

See more about python at brainly.com/question/26104476

View image lhmarianateixeira
Thank you for your visit. We're dedicated to helping you find the information you need, whenever you need it. We appreciate your time. Please revisit us for more reliable answers to any questions you may have. Find reliable answers at Westonci.ca. Visit us again for the latest updates and expert advice.