Changes between Version 63 and Version 64 of ControlSystems/SoftwareTeam/IntroToPython
- Timestamp:
- Sep 4, 2017, 9:38:14 PM (8 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ControlSystems/SoftwareTeam/IntroToPython
v63 v64 47 47 And, boom, now you're a programmer. The rest of learning how to code is just more details. This is the end of Lesson 1. 48 48 49 = Lesson 2: Making Decisions =49 = Lesson 2: Control Structures = 50 50 In lesson 1, we had you create a program, "Hello World". Now, "Hello World" is not too exciting if you want to program robots, but its an important first step. We showed you how to run a function (or verb) `print`, which does something (shows on the screen the value of its argument `a`, where `a` is assigned the value "Hello World". 51 51