You are here: Home / Topics / program to display the examination schedule

program to display the examination schedule

Filed under: Python on 2023-09-18 06:58:11

Python program to display the examination schedule. (extract the date from exam_st_date).
exam_st_date = (11, 12, 2014)
Sample Output: The examination will start from : 11 / 12 / 2014
 

Code:
exam_st_date = (11,12,2014)
print( "The examination will start from : %i / %i / %i"%exam_st_date)     

Output:

The examination will start from : 11 / 12 / 2014 
 


About Author:
M
Mr. Dubey     View Profile
Founder of MCQ Buddy. I just like to help others. This portal helps students in getting study material free. Share your stuff here so that others can get benefitted.