Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Write Python expressions corresponding to these statements: (f) '++++++++++++++++++++' Try to make your string expressions as succinct as you can. 2.14 Start by running, in

Write Python expressions corresponding to these statements:

(f) '++++++++++++++++++++' Try to make your string expressions as succinct as you can. 2.14 Start by running, in the shell, the following assignment statement: >>> s = 'abcdefghijklmnopqrstuvwxyz' Now write expressions using string s and the indexing operator that evaluate to 'a', 'c', 'z', 'y', and 'q'. 2.15 Start by executing s = 'goodbye' Then write a Boolean expression that check whether: (a) The first character of string s is 'g' (b) The seventh character of s is g (c) The first two characters of s are g and a (d) The next to last character of s is x (e) The midle character of s is d (f) The first and last characters of string s are equal (g) The last 4 characters of string s match the string 'tion' Note: These seven statements should evaluate to True, False, False, False, True, False, and False, respectively. 2.16 Write the corresponding Python assignment statements: (a) Assign 6 to variable a and 7 to variable b. (b) Assign to variable c the average of variables a and b. Chapter 2 Exercises 49 (c) Assign to variable inventory the list containing strings 'paper', 'staples', and 'pencils'. (d) Assign to variables first, middle and last the strings 'John', 'Fitzgerald', and 'Kennedy'. (e) Assign to variable fullname the concatenation of string variables first, middle, and last. Make sure you incorporate blank spaces appropriately.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Transactions On Large Scale Data And Knowledge Centered Systems Xxviii Special Issue On Database And Expert Systems Applications Lncs 9940

Authors: Abdelkader Hameurlain ,Josef Kung ,Roland Wagner ,Qimin Chen

1st Edition

3662534541, 978-3662534540

More Books

Students also viewed these Databases questions

Question

3. Explain the forces that influence how people handle conflict

Answered: 1 week ago