API/api.medcify.app/node_modules/pm2/lib/templates/sample-apps/python-app/echo.py

8 lines
122 B
Python
Raw Normal View History

2022-09-26 06:11:44 +00:00
#!/usr/bin/python
import time
while 1:
print("Start : %s" % time.ctime())
print("second line")
time.sleep(1)