Skip to content

Instantly share code, notes, and snippets.

@viniroger
Created October 31, 2019 15:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save viniroger/7b331c9f9dbe4f0d2c1d899ef70bc63a to your computer and use it in GitHub Desktop.
Save viniroger/7b331c9f9dbe4f0d2c1d899ef70bc63a to your computer and use it in GitHub Desktop.
Print message to follow process evaluation
@staticmethod
def print_control(place, day):
"""
Print dates/place control
"""
#print('%s - %s' %(place, day))
import sys
sys.stdout.write('%s - %s\r' %(place, day))
sys.stdout.flush()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment