Esempio n. 1
0
    def fellower():
        o = "office"
        l = "living"
        option = raw_input(
            "How do you intend to use the room ether office or living::")

        if option == o:
            Office.office_space()  #calls the office function
        elif option == l:
            Living.living_room()  #call living function
        else:
            print "Invalid option try again"
Esempio n. 2
0
 def member():
     Office.office_space()  #calls the office function.