I have the following code which does not list out the bedrooms or baths with the number :
room = ('Bath','BedRoom')
for k in range(0-6):
room = room[1] = str(1+k)
print room
I wanted to see the output as 'Bedroom1','Bedroom2'...............'Bedroom6'
I am not sure what I am doing wrong here and appreciate your inputs.
Thanks!