Advertisement
Guest User

Untitled

a guest
Oct 13th, 2019
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. from bullet import Bullet
  2. from bullet import colors
  3.  
  4. cli = Bullet(
  5. prompt="Please choose a fruit: ",
  6. choices=["apple", "banana", "orange", "watermelon", "strawberry"],
  7. indent=0,
  8. align=5,
  9. margin=2,
  10. shift=0,
  11. bullet="",
  12. pad_right=5,
  13. )
  14.  
  15. result = cli.launch()
  16. print("You chose:", result)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement