浏览代码

Simple widget kept

Jovian (Netbook) 6 年之前
父节点
当前提交
16b23aa679
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      text_question.py

+ 14 - 0
text_question.py

@@ -0,0 +1,14 @@
+from PyInquirer import prompt
+
+widget = [
+	{
+		'type':'input',
+		'name':'myVar',
+		'message':'Your data please :'
+	}
+]
+
+result = prompt(widget)
+print('Your answer is')
+print(result["myVar"])
+