Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 317 Bytes

tools.rst

File metadata and controls

15 lines (11 loc) · 317 Bytes

Tutorial on module dplearn.tools

continue_check

from dplearn.tools import continue_check
check_value = continue_check("Do you want to continue this procedure? [Y/n]: ")

if check_value in ['n', 'N']:
   break
else:
   pass