day()#
Py5 communicates with the clock on your computer.
Examples#
def setup():
d = py5.day() # values from_ 1 - 31
m = py5.month() # values from_ 1 - 12
y = py5.year() # 2003, 2004, 2005, etc.
py5.text(str(d), 10, 28)
py5.text(str(m), 10, 56)
py5.text(str(y), 10, 84)
Description#
Py5 communicates with the clock on your computer. The day()
function returns the current day as a value from 1 - 31.
Underlying Processing method: day
Signatures#
day() -> int
Updated on March 06, 2023 02:49:26am UTC