all you have to do is use the print command, input command and the sleep command
sleep command
print command
input command
example:
sleep command
Python:
import time
time.sleep(5)
#5 = 5 seconds
Python:
print('hello world!')
Python:
input('press any key to continue...')
#its like a pause button you have to unpause
Python:
print('Welcome to the PythonInstallWizard!')
input('By pressing any key, you agree to the Terms of Service you can see on the website you downloaded this application from.')
import time
print('Initializing download...')
time.sleep(2)
print('Downloading application. Please wait...')
print('Estimated download time: 1 minute')
time.sleep(61.53298)
print('Installing application. Please wait...')
print('Estimated install time: 10 seconds')
time.sleep(8.23)
print('Download and install of McAfee.exe was successful.')
input('Press any key to exit PythonInstallWizard')
exit