-
Notifications
You must be signed in to change notification settings - Fork 0
Boolean Input
Homer Haddock edited this page Sep 28, 2024
·
1 revision
Boolean only has one input function named yesNo
since 99.9% of boolean input are just Yes/No questions.
Usage is as follows:
import inputapi as inp
# Method 1
inp.yesNo()
# Method 2
inp.boolean.yesNo()
Parameter | data type | default | Purpose |
---|---|---|---|
request | string | 'Yes or no?' |
Is displayed when requesting input |
allowNumeric | boolean | True |
Allows for numeric input (Y=1, n=2) |
clearOnLoad | boolean | False |
Clears terminal before loading input |
clearWhenDone | boolean | False |
Clears terminal after getting input |