echo.py 122 B

1234567
  1. #!/usr/bin/python
  2. import time
  3. while 1:
  4. print("Start : %s" % time.ctime())
  5. print("second line")
  6. time.sleep(1)