Jorell_Ramos_Sinaga

Untitled

Dec 16th, 2021 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. month = int(input())
  2. months = {
  3.   1:"January",
  4.   2:"February",
  5.   3:"March",
  6.   4:"April",
  7.   5:"May",
  8.   6:"June",
  9.   7:"July",
  10.   8:"August",
  11.   9:"September",
  12.   10:"October",
  13.   11:"November",
  14.   12:"December",
  15. }
  16.  
  17. print(months.get(month))
Add Comment
Please, Sign In to add comment