147k views
4 votes
Given num_rows and num_cols, print a list of all seats in a theater. Rows are numbered, columns lettered, as in 1A or 3E. Print a space after each seat, including after the last. Ex: num_rows = 2 and num_cols = 3 prints: 1A 1B 1C 2A 2B 2C

num_rows = 2
num_cols = 3
# Note 1: You will need to declare more variables
# Note 2: Place end=' ' at the end of your print statement to separate seats by spaces

User NomanJaved
by
5.5k points

1 Answer

1 vote

Answer:

The program written in Python is as follows

Step-by-step explanation:

Given num_rows and num_cols, print a list of all seats in a theater. Rows are numbered-example-1
User Uday Reddy
by
5.8k points