Python追溯:文件“ <string>”。这是什么意思?

时间:2018-12-22 19:21:52

标签: python micropython

好吧,显然我是新来的。 我得到了这个Python追踪:

Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<string>", line 30
SyntaxError: invalid syntax

File "<string>"代表什么?

我的代码在第30行有一个空行,所以我假设这不是我的代码,但是它指的是什么?

(我在ESP8266上使用Micropython)

这是我的代码:

import network
import tinyweb
import machine

# Connect to your WiFi AP
sta_if = network.WLAN(network.STA_IF)
sta_if.active(True)
sta_if.connect('blabla', 'blabla')

# Create web server application
app = tinyweb.webserver()
count = 0

# Hello world index page (just to be sure - let's handle most popular index links)
@app.route('/')
@app.route('/index.html')
async def index(req, resp):
    await resp.start_html()
    await resp.send('<html><body><h1>Hello, world!</h1></html>\n')

# Counter REST API endpoint
@app.resource('/counter')
def counter(data):
    return {'name': 'Foo', 'counter': counter}

def pin_handler(p)
    global count
    count =count + 1

#pin=machine.Pin(0, machine.Pin.IN, machine.Pin.PULL_UP)  
#pin.irq(handler = pin_handler, trigger = Pin.IRQ_FALLING, hard = True)

if __name__ == '__main__':
    app.run(host='0.0.0.0', port=80)

1 个答案:

答案 0 :(得分:0)

多谢了,我找到了原因。 apply(prova[,1:3],1,sum)显然只引用了我自己的代码。 我忘记在pin_handler函数的和处添加一个冒号,并且以某种方式将错误发生的位置向下移动了。