Advertisement
Guest User

andreilol

a guest
Oct 14th, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.50 KB | None | 0 0
  1. """Create schedule from the given file."""
  2.  
  3.  
  4. def create_schedule_file(input_filename: str, output_filename: str) -> None:
  5.     """Create schedule file from the given input file."""
  6.     pass
  7.  
  8.  
  9. def create_schedule_string(input_string: str) -> str:
  10.     """Create schedule string from the given input string."""
  11.     pass
  12.  
  13.  
  14. if __name__ == '__main__':
  15.     print(create_schedule_string("wat 11:00 teine tekst 11:0 jah ei 10:00 pikktekst "))
  16.     create_schedule_file("schedule_input.txt", "schedule_output.txt")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement