14 lines
231 B
Python
Executable file
14 lines
231 B
Python
Executable file
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
"""
|
|
Created on Sat May 9 09:53:25 2020
|
|
|
|
@author: francois
|
|
"""
|
|
|
|
from questionary import prompt
|
|
import questions_entite as qe
|
|
|
|
entite = prompt(qe.choix_entite)
|
|
|
|
print(entite['entite'])
|