sh_06_ girlfriend holiday

 

sh_06_ girlfriend holiday

1  # define holiday_name holiday string variable name record 
2 holiday_name = " birthday " 
3  
4  # If it is Valentine's Day should buy roses / cinema 
5  IF holiday_name == " Valentine's Day " :
 6      Print ( " buy roses " )
 7      Print ( " movie " )
 8  
9  # If it is Christmas Eve Apple should buy / eat a big meal 
10  elif HOLIDAY_NAME == " Silent Night " :
 11      Print ( " buy apple ")
 12      Print ( " fancy meal " )
 13  
14  # If the birthday cake should buy 
15  elif HOLIDAY_NAME == " Birthday " :
 16      Print ( " buy cake " )
 17  
18  # the other day every day festival ah ...... 
19  the else :
 20      Print ( " all festival day ah " )

 

Guess you like

Origin www.cnblogs.com/shaohan/p/11468245.html