编写第一个脚本文件编写第一个脚本文件import utimedef sayHello(): for i in range(30): print('hello world!') utime.sleep(1)if __name__ == '__main__': sayHello()