<< 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

if three forces F1.f2 .f3 act at a point on a Cartesian plane in the daigram .....so if the question says write down the x and y components ..... I really don't understand
Syamthanda Reply
hey , can you please explain oxidation reaction & redox ?
Boitumelo Reply
hey , can you please explain oxidation reaction and redox ?
Boitumelo
for grade 12 or grade 11?
Sibulele
the value of V1 and V2
Tumelo Reply
advantages of electrons in a circuit
Rethabile Reply
we're do you find electromagnetism past papers
Ntombifuthi
what a normal force
Tholulwazi Reply
it is the force or component of the force that the surface exert on an object incontact with it and which acts perpendicular to the surface
Sihle
what is physics?
Petrus Reply
what is the half reaction of Potassium and chlorine
Anna Reply
how to calculate coefficient of static friction
Lisa Reply
how to calculate static friction
Lisa
How to calculate a current
Tumelo
how to calculate the magnitude of horizontal component of the applied force
Mogano
How to calculate force
Monambi
a structure of a thermocouple used to measure inner temperature
Anna Reply
a fixed gas of a mass is held at standard pressure temperature of 15 degrees Celsius .Calculate the temperature of the gas in Celsius if the pressure is changed to 2×10 to the power 4
Amahle Reply
How is energy being used in bonding?
Raymond Reply
what is acceleration
Syamthanda Reply
a rate of change in velocity of an object whith respect to time
Khuthadzo
how can we find the moment of torque of a circular object
Kidist
Acceleration is a rate of change in velocity.
Justice
t =r×f
Khuthadzo
how to calculate tension by substitution
Precious Reply
hi
Shongi
hi
Leago
use fnet method. how many obects are being calculated ?
Khuthadzo
khuthadzo hii
Hulisani
how to calculate acceleration and tension force
Lungile Reply
you use Fnet equals ma , newtoms second law formula
Masego
please help me with vectors in two dimensions
Mulaudzi Reply
how to calculate normal force
Mulaudzi
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