Skip to content

rowanqol Home Page

Quality of life stuff for Python!

Installation

pip install rowanqol

Quick Start

import rowanqol as rq
x = rq.int_input("Input an integer:", error_msg="Input an INTEGER.")
print_x = rq.y_n_input("Display the integer you printed? (y or n)",
                       error_msg="Input y or n.",
                       bool_return=True)
if print_x:
    print(x)