<< Chapter < Page Chapter >> Page >

The dictionary is printed in Listing 2 producing the output shown in Figure 1 .

Listing 2 . Scan for available stations.
#Program the three buttons labeled 1, 2, and 3 #First scan for available stationsradio01Stations = radio01.scan("Austin") print("Available stations in Austin")print(radio01Stations)

As mentioned above, Figure 1 shows the output produced by the code in Listing 2 .

Figure 1 . Output from the code in Listing 2.
Available stations in Austin {93.7: 'KLBJ', 91.7: 'KVRX', 98.1: 'KVET', 95.5: 'KKMJ'}

Program the buttons on radio01

This program simulates a radio having three station-selector buttons. The code in Listing 3 uses the object's reference stored in radio01 to call a method named setStationNumber three times in succession on the object to program each of the three buttons to the frequencies shown. (Note that the buttons are numbered 1, 2, and 3 instead of 0, 1, and 2.)

Listing 3 . Program the buttons on radio01.
print("Program the buttons") radio01.setStationNumber(1,radio01Stations[91.7]) radio01.setStationNumber(2,radio01Stations[95.5]) radio01.setStationNumber(3,radio01Stations[98.1])

The output produced by the code in Listing 3 is shown in Figure 2 .

Figure 2 . Output from the code in Listing 3.
Program the buttons

Play the three programmed stations

Now that our favorite radio stations in the local area (Austin) have been programmed into the buttons, we can play any of the three stationssimply by turning the radio on and pressing a station-selector button.

Listing 4 calls the playStation method three times in succession on the radio01 object to simulate pressing each of the three buttons. This program doesn't actually produce sound.Instead, it simulates playing a radio station by printing a message identifying the call sign of the station being played.

Listing 4 . Play the three programmed stations.
print("Play the three programmed stations") radio01.playStation(3)radio01.playStation(2) radio01.playStation(1)

Figure 3 shows the output produced by the code in Listing 4 .

Figure 3 . Output from the code in Listing 4.
Play the three programmed stations Playing KVETPlaying KKMJ Playing KVRX

Manufacture another 3-button radio

As I explained earlier, once a class definition is available, it can be used to instantiate any number of objects. This is illustrated in Listing 5 , which simulates the manufacturing, programming, and playing of a different radioobject.

As you can see in Listing 5 , the buttons on this radio are programmed for stations in Dallas suggesting the owner of this radio livesin Dallas.

Listing 5 . Manufacture another 3-button radio.
#Manufacture another 3-button radio radio02 = Radio()#Program the three buttons labeled 1, 2, and 3 #First scan for available stationsradio02Stations = radio02.scan("Dallas") print("Available stations in Dallas")print(radio02Stations) print("Program the buttons")radio02.setStationNumber(1,radio02Stations[91.7])radio02.setStationNumber(2,radio02Stations[97.9])radio02.setStationNumber(3,radio02Stations[98.3])print("Play the three programmed stations") radio02.playStation(3)radio02.playStation(2) radio02.playStation(1)

Questions & Answers

Biology is a branch of Natural science which deals/About living Organism.
Ahmedin Reply
what is phylogeny
Odigie Reply
evolutionary history and relationship of an organism or group of organisms
AI-Robot
ok
Deng
what is biology
Hajah Reply
cell is the smallest unit of the humanity biologically
Abraham
what is biology
Victoria Reply
what is biology
Abraham
HOW CAN MAN ORGAN FUNCTION
Alfred Reply
the diagram of the digestive system
Assiatu Reply
allimentary cannel
Ogenrwot
How does twins formed
William Reply
They formed in two ways first when one sperm and one egg are splited by mitosis or two sperm and two eggs join together
Oluwatobi
what is genetics
Josephine Reply
Genetics is the study of heredity
Misack
how does twins formed?
Misack
What is manual
Hassan Reply
discuss biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles
Joseph Reply
what is biology
Yousuf Reply
the study of living organisms and their interactions with one another and their environment.
Wine
discuss the biological phenomenon and provide pieces of evidence to show that it was responsible for the formation of eukaryotic organelles in an essay form
Joseph Reply
what is the blood cells
Shaker Reply
list any five characteristics of the blood cells
Shaker
lack electricity and its more savely than electronic microscope because its naturally by using of light
Abdullahi Reply
advantage of electronic microscope is easily and clearly while disadvantage is dangerous because its electronic. advantage of light microscope is savely and naturally by sun while disadvantage is not easily,means its not sharp and not clear
Abdullahi
cell theory state that every organisms composed of one or more cell,cell is the basic unit of life
Abdullahi
is like gone fail us
DENG
cells is the basic structure and functions of all living things
Ramadan
What is classification
ISCONT Reply
is organisms that are similar into groups called tara
Yamosa
Got questions? Join the online conversation and get instant answers!
Jobilize.com Reply

Get Jobilize Job Search Mobile App in your pocket Now!

Get it on Google Play Download on the App Store Now




Source:  OpenStax, Itse 1359 introduction to scripting languages: python. OpenStax CNX. Jan 22, 2016 Download for free at https://legacy.cnx.org/content/col11713/1.32
Google Play and the Google Play logo are trademarks of Google Inc.

Notification Switch

Would you like to follow the 'Itse 1359 introduction to scripting languages: python' conversation and receive update notifications?

Ask