Skip to content

Instantly share code, notes, and snippets.

@paley777
Created June 18, 2022 08:32
Show Gist options
  • Save paley777/10e413a10d040dea3f0c28d3b800795e to your computer and use it in GitHub Desktop.
Save paley777/10e413a10d040dea3f0c28d3b800795e to your computer and use it in GitHub Desktop.
Calendar Python
# Mengimpor Modul Calendar
import calendar
# Menginput Tahun dan Bulan
yy = int(input("Masukkan Tahun: "))
mm = int(input("Masukkan Bulan: "))
# Menampilkan Kalender Bulanan
print(calendar.month(yy, mm))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment