15 lines
231 B
Python
15 lines
231 B
Python
|
#!/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'])
|