羅德興老師的教學歷程檔案 - 108-2 資料結構 - Python 學習資源(四)-- module 習作
 

企業資訊與管理系
助理教授/日導
羅德興


歷程檔案 Portfolio

    Python 學習資源(四)-- module 習作


    1.
    mymath.py
    # module 習作


    2. 
    # mymodule.py
    # call module 習作
    import mymath




    3. 套裝 package 的使用




    main.py
     
    # main.py
    import pypackage.mymath as math
    import pypackage.bank2 as bk
     
    print ('\n call module math')
    print ('PI=', math.pi)
    a=24
    b=3
    c= 5
    print ('%d 和 %d 的 GCD = %d' % (a, b, math.gcd (24,3)))
    print ('%d 階層! = %d' %(c, math.factorial(4)))
     
    print ('\n call module bank2')
    acct = bk.Account('Tommy', '999-889', 900)
    print ('原帳戶為:', acct, '\n')
     
    x= 600
    print ('存款 %d 元' %x)
    acct.deposit(x)
    print ('Call Bank 存款 後 帳戶為:', acct, '\n')
     
    y= 300
    print ('提款 %d 元' %y)
    acct.withdraw(y)
    print ('Call Bank 提款 後 帳戶為:', acct, '\n')
    print ('目前帳戶為:', acct)
     

    bank2.py
    class Account:


    4.

    使用 PyInstaller 將 Python打包成 exe 檔

    https://medium.com/pyladies-taiwan/python-%E5%B0%87python%E6%89%93%E5%8C%85%E6%88%90exe%E6%AA%94-32a4bacbe351

    5.

    Build a Mobile Application With the Kivy Python Framework

    https://realpython.com/mobile-app-kivy-python/
    全部共 0則留言
    登入帳號密碼代表遵守學術網路規範


    文章分類 Labels


    最新文章 Top10

    中華科技大學數位化學習歷程 - 意見反應