# **************************************************************************** # # # # ::: :::::::: # # main.py :+: :+: :+: # # +:+ +:+ +:+ # # By: wto <*****@*****.**> +#+ +:+ +#+ # # +#+#+#+#+#+ +#+ # # Created: 2018/03/24 04:46:20 by wto #+# #+# # # Updated: 2018/03/24 04:47:16 by wto ### ########.fr # # # # **************************************************************************** # from first_class import FirstClass if __name__ == "__main__": fc = FirstClass()
from first_class import FirstClass from second_class import SecondClass obj = FirstClass() nobj = SecondClass()
from first_class import FirstClass from second_class import SecondClass nobj = SecondClass("Elliot") obj = FirstClass() obj.say_hello()
from first_class import FirstClass FirstClass()
def main(): c = FirstClass() print