myc1 class,定義 __init__(self) 印出 class 名稱,定義 __method1(self) 印出 "method1 in class myc1"。
__name__ 是否等於 __main__,是則印出變數 __name__,並執行 myc1 及 myc1 中的 method __method1;否則印出變數 __name__
myc1.__name__,觀察其與直接執行 underscore1.py 時的 __name__ 有何不同?
myc1 中的 method __method1,觀察其結果。