Write a Python program to display the examination schedule
exam_schedule_date = (20, 11, 2022)
Sample Output: The examination will start from 20 / 11 / 2022
exam_schedule_date = (20,11,2022) print( "The examination will start from : %i / %i / %i"%exam_schedule_date)
Result
