Skip to content

Commit a47bf65

Browse files
committed
Update physical kit mentions of Python version to 3.10
This doesn't touch the simulator, which will need a separate release to make this change. Fixes #346
1 parent ae64263 commit a47bf65

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

programming/python/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: Python
66
Python
77
======
88

9-
Student Robotics robots are all programmed in [Python 3.9](https://www.python.org);
9+
Student Robotics robots are all programmed in [Python 3.10](https://www.python.org);
1010
to program a robot, it is important that you have a basic understanding of Python.
1111

1212
There are a number of tutorials out there which might help you to learn to program in Python:
@@ -15,11 +15,11 @@ There are a number of tutorials out there which might help you to learn to progr
1515
This was written especially for Student Robotics competitors,
1616
and explains the basics while trying not to overwhelm you.
1717

18-
* [The Official Tutorial](https://docs.python.org/3.9/tutorial/) -- the good stuff starts at chapter 3,
18+
* [The Official Tutorial](https://docs.python.org/3.10/tutorial/) -- the good stuff starts at chapter 3,
1919
but you should at least skim the stuff before it;
2020
there is a lot there and it may be a little overwhelming.
2121

2222
* A number of tutorials for beginners are linked to from [here](https://wiki.python.org/moin/BeginnersGuide/NonProgrammers).
2323
[Wikibooks Tutorial](https://en.wikibooks.org/wiki/Non-Programmer%27s_Tutorial_for_Python_3) seems like a good one.
2424

25-
* [The Official Docs](https://docs.python.org/3.9/), for the version of python on the [Brain Board](/docs/kit/brain_board).
25+
* [The Official Docs](https://docs.python.org/3.10/), for the version of python on the [Brain Board](/docs/kit/brain_board).

tutorials/python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ title: "Python: A whirlwind tour"
66
Python: A whirlwind tour
77
========================
88

9-
In this tutorial, we'll introduce the basic concepts of programming, which will be central to the programs that you will run on your robot. There are many different languages in which computers can be programmed, all with their advantages and disadvantages, but for the Student Robotics competition we use one called Python 3.9. We chose it because it's good for beginners, but also elegant and powerful.
9+
In this tutorial, we'll introduce the basic concepts of programming, which will be central to the programs that you will run on your robot. There are many different languages in which computers can be programmed, all with their advantages and disadvantages, but for the Student Robotics competition we use one called Python 3.10. We chose it because it's good for beginners, but also elegant and powerful.
1010

1111
Sprinkled through the tutorial are exercises. The first ones for each section should be quite easy, while the higher-numbered exercises will be harder. Some will be very hard; try these if you're up for a challenge.
1212

0 commit comments

Comments
 (0)