Advertisement
UniQuet0p1

Untitled

Oct 2nd, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.29 KB | None | 0 0
  1. if __name__ == '__main__':
  2.     prod_data = read_production_data("reedene_oee.csv")
  3.     print('\n- Production data -')
  4.     print('[Run Time (minutes), Ideal Run Rate (pcs/min), Total Count (pcs), Good Count (pcs)]')
  5.     for key, value in prod_data.items():
  6.         print(f"{key}: {value}")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement