<< Chapter < Page Chapter >> Page >

Go to answer 6

Question 7

True or False? The code in the top panel of Figure 10 produces the output shown in the bottom panel of Figure 10 .

Figure 10 . Question 7.
str = "This is a string." chars = ["a","s","d","f","g","h"]print(str) print(chars)for cnt in range(len(chars)): if(chars[cnt]) not in str: print(chars[cnt]) ===============================================================================This is a string. ['a', 's', 'd', 'f', 'g', 'h']a sg h

Go to answer 7

Question 8

True or False? The code in the top panel of Figure 12 produces the output shown in the bottom panel of Figure 12 .

Figure 12 . Question 8.
str = """Line 1 Line 2"""print(str) ===============================================================================Line 1 Line 2

Go to answer 8

Question 9

True or False? The code in the top panel of Figure 13 produces the output shown in the bottom panel of Figure 13 .

Figure 13 . Question 9.
str = """Line 1\nLine 2""" print(str)=============================================================================== Line 1\nLine 2

Go to answer 9

Question 10

True or False? The code in the top panel of Figure 15 produces the output shown in the bottompanel of Figure 15 .

Figure 15 . Question 10.
str = r"""Line 1\nLine 2""" print(str)=============================================================================== Line 1Line 2

Go to answer 10

Question 11

True or False? Given a file named 1359-1830-11-input.txt containing the text shown in the top panel of Figure 17 , the code in the middle panel of Figure 17 produces the output shown in the bottom panel of Figure 17 .

Figure 17 . Question 11.
Line 1 Line 2Line 3 ===============================================================================infile = open("1359-1830-11-input.txt") print("Name of the file: ", infile.name)line = infile.readline() print(line)infile.close() ===============================================================================Name of the file: 1359-1830-11-input.txt Line 1

Go to answer 11

Question 12

True or False? Given a file named 1359-1830-12-input.txt containing the text shown in the top panel of Figure 18 , the code in the middle panel of Figure 18 produces the output shown in the bottom panel of Figure 18 .

Figure 18 . Question 12.
Line 1 Line 2Line 3 ===============================================================================infile = open("1359-1830-12-input.txt") print("Name of the file: ", infile.name)for line in infile.readlines(): print(line)=============================================================================== Name of the file: 1359-1830-12-input.txtLine 1 Line 2Line 3

Go to answer 12

Question 13

True or False? Given a file named 1359-1830-13-input.txt containing the text shown in the top panel of Figure 19 , the code in the middle panel of Figure 19 produces the output shown in the bottom panel of Figure 19 .

Figure 19 . Question 13.
Line 1 Line 2Line 3 ===============================================================================infile = open("1359-1830-13-input.txt") print("Name of the file: ", infile.name)for line in infile.readline(): print(line)=============================================================================== Line 1

Questions & Answers

how did the oxygen help a human being
Achol Reply
how did the nutrition help the plants
Achol Reply
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
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