SunFounder Thales Kit for Raspberry Pi Pico, Release 1.0
The continue Statement
With the
continue
statement we can stop the current iteration of the loop, and continue with the next:
numbers
=
[
1
,
2
,
3
,
4
]
for
val
in
numbers:
if
val
==
3
:
continue
(val)
>>> %Run -c $EDITOR_CONTENT
1
2
4
The range() function
We can use the range() function to generate a sequence of numbers. range(6) will produce numbers between 0 and 5
(6 numbers).
We can also define start, stop and step size as range(start, stop, step_size). If not provided, step_size defaults to 1.
In a sense of range, the object is “lazy” because when we create the object, it does not generate every number it
“contains”. However, this is not an iterator because it supports in, len and __getitem__ operations.
This function will not store all values in memory; it will be inefficient. So it will remember the start, stop, step size
and generate the next number during the journey.
To force this function to output all items, we can use the function list().
(
range
(
6
))
(
list
(
range
(
6
)))
(
list
(
range
(
2
,
6
)))
(
list
(
range
(
2
,
10
,
2
)))
>>> %Run -c $EDITOR_CONTENT
range(0, 6)
[0, 1, 2, 3, 4, 5]
[2, 3, 4, 5]
[2, 4, 6, 8]
We can use
range()
in a
for
loop to iterate over a sequence of numbers. It can be combined with the len() function to
use the index to traverse the sequence.
fruits
=
[
'pear'
,
'apple'
,
'grape'
]
for
i
in
range
(
len
(fruits)):
(
"I like"
, fruits[i])
>>> %Run -c $EDITOR_CONTENT
I like pear
I like apple
I like grape
120
Chapter 3. For MicroPython User
Содержание Thales Kit
Страница 1: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 Jimmy SunFounder Jun 04 2021 ...
Страница 2: ......
Страница 4: ...ii ...
Страница 6: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 2 CONTENTS ...
Страница 10: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 6 Chapter 1 Introduction to Raspberry Pi Pico ...
Страница 12: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 8 Chapter 2 What is Included in This Kit ...
Страница 13: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 2 1 Components List 2 1 Components List 9 ...
Страница 42: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 38 Chapter 2 What is Included in This Kit ...
Страница 140: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 136 Chapter 3 For MicroPython User ...
Страница 164: ...SunFounder Thales Kit for Raspberry Pi Pico Release 1 0 160 Chapter 4 For Arduino User ...