您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 

16 行
467 B

#!/usr/bin/env python3
#title :5-1.py
#description :Opdracht 5.1 - Functie met drie parameters
#author :Marcel Haazen
#email :marcel@haazen.xyz
#date :21-09-2019 - 23:54
#version :0.1
#usage :python3 5-1.py
#notes :
#python_version :3.7.4
#==============================================================================
def som(getal1, getal2, getal3):
print(sum([getal1,getal2,getal3]))
som(1,2,4)