Beispiel #1
0
# **************************************************************************** #
#                                                                              #
#                                                         :::      ::::::::    #
#    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()
Beispiel #2
0
from first_class import FirstClass
from second_class import SecondClass

obj = FirstClass()
nobj = SecondClass()

Beispiel #3
0
from first_class import FirstClass
from second_class import SecondClass

nobj = SecondClass("Elliot")
obj = FirstClass()
obj.say_hello()
Beispiel #4
0
from first_class import FirstClass

FirstClass()
Beispiel #5
0
def main():
    c = FirstClass()
    print