#!/usr/bin/env python3
|
|
#title :5-3.py
|
|
<<<<<<< HEAD
|
|
#description :Opdracht 5.3 - Functie met drie parameters
|
|
#author :Marcel Haazen
|
|
#email :marcel@haazen.xyz
|
|
#date :21-09-2019 - 23:54
|
|
=======
|
|
#description :Opdracht 5.3 - Functie met if
|
|
#author :Marcel Haazen
|
|
#email :marcel@haazen.xyz
|
|
#date :22-09-2019 - 13:40
|
|
>>>>>>> Add assignments
|
|
#version :0.1
|
|
#usage :python3 5-3.py
|
|
#notes :
|
|
#python_version :3.7.4
|
|
#==============================================================================
|
|
<<<<<<< HEAD
|
|
=======
|
|
|
|
def lang_genoeg(length):
|
|
if length >= 120:
|
|
print("Je bent lang genoeg voor de attractie!")
|
|
else:
|
|
print("Sorry, je bent te klein!")
|
|
|
|
lang_genoeg(119)
|
|
lang_genoeg(120)
|
|
>>>>>>> Add assignments
|