6. Function (60%)
定義與使用函式
# Define a function
def FUNCTION_NAME(INPUT1, INPUT2):
# Add member variable here
# Add some code here
return OUTPUT1, OUTPUT2
# Call the function
a, b = FUNCTION_NAME(c, d)定義常用函式
空值清理NaN and Null
產生顏色
<函式練習01> Generating color list
<函式練習02> Advanced: Generating color list by specifying colors
數學函式
Last updated