
VEX Robotics Computer Science Level 1 Python Course

વિશિષ્ટતાઓ
| અભ્યાસક્રમ | Computer Science Level 1 – Python |
|---|---|
| એકમ | 4 |
| પાઠ | 3 |
| વિષય | Driving Until Pressed Quiz |
ઉપયોગ સૂચનાઓ
કોડ Example
def main():
while not left_bumper.pressed():
drivetrain.drive(FORWARD)
wait(5, MSEC)
drivetrain.drive_for(REVERSE, 200, MM)
પ્રશ્ન 1
What will the VR Robot do when the Bumper Sensor is pressed in this project?
- Turn right for 180 degrees.
- Stop driving.
- Turn right for 90 degrees.
- Drive in reverse for 200 millimeters (mm).
કોડ Example
def main():
while not left_bumper.pressed():
drivetrain.drive(FORWARD)
wait(5, MSEC)
drivetrain.turn_for(RIGHT, 90, DEGREES)
while not left_bumper.pressed():
drivetrain.drive(FORWARD)
wait(5, MSEC)
drivetrain.turn_for(LEFT, 90, DEGREES)
પ્રશ્ન 2
What needs to happen for the VR Robot to turn left in this project?
- The Left Bumper Sensor needs to be pressed once.
- The VR Robot needs to drive for 300 millimeters (mm).
- The Left Bumper Sensor needs to be pressed twice.
- The pen needs to draw a circle on the Playground.
કૉપિરાઇટ 2021 ઇનોવેશન ફર્સ્ટ, ઇન્ક. (dba VEX રોબોટિક્સ). બધા હકો અમારી પાસે રાખેલા છે. સંપૂર્ણ કૉપિરાઇટ શરતો અહીં જુઓ https://copyright.vex.com/
દસ્તાવેજો / સંસાધનો
સંદર્ભો
- Copyright Notice | VEX Robotics - VEX Roboticscopyright.vex.com
- વપરાશકર્તા માર્ગદર્શિકાmanual.tools
Published: June 10, 2026
અપડેટ: જૂન 11, 2026



















