Advertisement
Guest User

Untitled

a guest
Nov 17th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. buildings = ["A", "B", "C", "D", "E"]
  2. levels = ["1", "2", "3", "4", "5", "6", "7"]
  3. disciplines = ["H", "V", "K", "M"]
  4. Tab = list()
  5. for building in buildings :
  6. for level in levels :
  7. for discipline in disciplines :
  8. a = building
  9. b = level
  10. c = discipline
  11. d = a + b + c
  12. Tab.append(d)
  13.  
  14. for element in Tab :
  15. print (element)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement