aroberge / easygui_qt

Inspired by easygui, designed for PyQt
BSD 3-Clause "New" or "Revised" License
59 stars 18 forks source link

* get_many_strings() now return an ordered dict which can be indexed #31

Closed royqh1979 closed 5 years ago

royqh1979 commented 5 years ago

now we can:

values=easy.get_many_strings("please input:", labels=('a=','b=','c='))
a=values[0]
b=values[1]
c=values[2]

as well as

a=values['a=']
b=values['b=']
c=values['c=']