1. 程式人生 > >python入門學習日記-2

python入門學習日記-2

 

以下程式碼: https://github.com/limeiyang/python-study

1.註釋和函式呼叫

檔名:helloworld.py

print("你好 世界")

#單行解釋
'''多行註釋'''
"""多行註釋"""
'''
python裡面單引號和雙引號作用一樣
pycharm中註釋快捷和sublime中一樣 ctrl+/
'''


'''
函式編輯
實現加法
~~~~~~~~~~~~~~~~~~
add(num0, num1)--實現兩數相加
'''
def add(num0 , num1):
    return  num0 + num1

#呼叫add函式
print('100+200=',add(100,200))

執行:

2.模組呼叫:

檔名:import-hello.py

#呼叫helloworld檔案模組
import helloworld
print('呼叫成功,輸出')
print(helloworld.add(100,300))

執行:

可以看出 import會把呼叫資料夾的檔案直接全部執行,相當於把呼叫檔案裡面的程式碼貼上到新的檔案。

3.main函式:

#main函式 (也是程式的執行開始)
if __name__ == "__main__":
    print("main 函式的執行")

3.變數和資料型別

# 單獨定義變數
num01 = 1
num02 = 3.14
num03 = False
str01 = "www.baidu.com"

# 多個變數賦值
num04 = num05 = num06 = 4

# 一次定義多個
num07, num08, num09 = 1, 2, 3

print("num08 是",num08)


# 資料型別
print(1+2)
print("1+80")
print(True)
print("hello", "world")
print("hello" + "world")

num1 = 100
num2 = -99.25
num3 = (100>722)
str1 = "world"

print(type(num1))
print(type(num2))
print(type(num3))
print(type(str1))

執行結果: