File: text_name.py

package info (click to toggle)
python-questionary 2.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 960 kB
  • sloc: python: 3,917; makefile: 66
file content (5 lines) | stat: -rw-r--r-- 138 bytes parent folder | download
1
2
3
4
5
import questionary

if __name__ == "__main__":
    name = questionary.text("What's your first name?").ask()
    print(f"Hey {name} 🦄")