مشروع قائمة المهام و تقرير التقدم

مشروع قائمة المهام و تقرير التقدم

Enter_Tasks = input('Enter your tasks for tody separated by comma: ').split(', ')
The_Tasks = []
The_Tasks2 = []
for the_Tasks in Enter_Tasks:
 print(f"\n{the_Tasks}")
 Tasks = input(f'\nDid you finish {the_Tasks} alredy? (yes or no): ')
 if Tasks.lower() == 'yes':
  print('Nice Jop')
  The_Tasks.append(the_Tasks)
 elif Tasks.lower() == 'no':
  print('Try not to put if off')
  The_Tasks2.append(the_Tasks)
 else:
  print("Sorry, I don't understand")
  print('-------------\n') 
progress = input("\nDo you want to see today's progress? (yes, no) ")
if progress == 'yes':
    print(f'\n        ******** Done Tasks *********\n\n{The_Tasks}\n')
    print(f'\n        ******** Ongoing Tasks *********\n\n{The_Tasks2}')
إعجابَين (2)