my-psb/testpackage.py

14 lines
290 B
Python
Executable File

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Cours OC/python 3 - Modularite
[Ex 1.7: testpackage](https://openclassroom/courses/apprenez-a-programmer-en-python/pas-a-pas-vers-la-modularite-2-2)
essai d'utilisation d'un package
"""
from package.fonctions import table
table(8, 12)