Example python programMade using jupyter notebooks Aug 24, 2022 • 1 min read jupyter classwork python from datetime import date print("Hello World!") today = date.today() print("Today's date:", today) Hello World! Today's date: 2022-08-24