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

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
the study of living organisms and their interactions with one another and their environments
AI-Robot
what is biology
Victoria Reply
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
in what situation (s) would be the use of a scanning electron microscope be ideal and why?
Kenna Reply
A scanning electron microscope (SEM) is ideal for situations requiring high-resolution imaging of surfaces. It is commonly used in materials science, biology, and geology to examine the topography and composition of samples at a nanoscale level. SEM is particularly useful for studying fine details,
Hilary
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