Looking for answers? Westonci.ca is your go-to Q&A platform, offering quick, trustworthy responses from a community of experts. Discover solutions to your questions from experienced professionals across multiple fields on our comprehensive Q&A platform. Experience the ease of finding precise answers to your questions from a knowledgeable community of experts.

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