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:
S
Shyam Dubey     View Profile
If you are good in any field. Just share your knowledge with others.