1
Fork 0
This repository has been archived on 2021-11-02. You can view files and clone it, but cannot push or open issues or pull requests.
automation_project/Lesopdrachten(formatief)/01 Sockets/Opdracht 1/9.py

7 lines
98 B
Python

def dubbel(invoer):
return int(invoer * 2)
print(dubbel(3))
print(dubbel(60))
print(dubbel(-3))