Следующий код работает просто отлично:
# Add your Python code here. E.g.
from microbit import *
score = 0
display.show(str(score))
while True:
if accelerometer.was_gesture('face down'):
score += 1
if score < 10:
display.show(score)
else:
display.scroll(score)
continue
'' 'Но когда я пытаюсь заменить was_gesture (' face down ') на get_Z, я получаю ошибку:' ''
# Add your Python code here. E.g.
from microbit import *
score = 0
display.show(str(score))
z = accelerometer.get_z()
while True:
if z < accelerometer.get_z(-500)
score += 1
if score < 10:
display.show(score)
else:
display.scroll(score)
continue
Я получил ошибку? Но почему? Я просто хочу, чтобы микробиты подсчитывали каждый раз, когда я перемещаю устройство ниже определенной точки?