File: text_name.py

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

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