Quick actions

cmd+k|ctrl+k

Navigation

Languages

bai 6.3

Snippet info

Language

Python

Visibility

public

Author

theanhvo221

Created

2016-10-13T13:42:27Z

Updated

2016-10-13T14:04:46Z

input = 7
months = [(0 , '') ,(1 ,'Jan 31'),(2 ,'Jan 28'), (3 ,'Mar 31'), (4 ,' Apr 30'), 
(5, 'May 31'), (6 ,'Jun 30'), (7, 'July 31')]
print ( months[input])
INFO