I want to have an uniform way of using input over python <3 and >=3. Is there any cleaner way to do it apart of of version detection:
if sys.version_info[0] < 3:
raw_input("Press Enter to continue...");
else:
input("Press Enter to continue...");