Advertisement
skip420

input_schedule

Sep 5th, 2022
885
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.44 KB | None | 0 0
  1. # add any optional output in raw input according to time.date or meeting/scheduling then send as email notice
  2.  
  3. import datetime  
  4. schedule=input("add time and description of meeting? ")  
  5. print("You are required to join our meeting   :"+schedule)  
  6.  
  7.  
  8.  
  9.  
  10.  
  11. # Example:
  12.  
  13. ghostproxy@ghostproxy:~/Desktop$ python3 meet.py
  14. add time and description of meeting? tomorrow meeting at 4pm
  15. You are required to join our meeting   :tomorrow meeting at 4pm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement