Question

Select all true statements about Python string indexing: Python uses indexing operator (square br...

Select all true statements about Python string indexing:

Python uses indexing operator (square brackets) to select a single character from a string

Python supports indexing in both left to right and right to left

Left to right indexing starts with 0

Right to left indexing starts with -1

The return type of a string index is also a string

Select all the ways you can extract "rocks" out of s = "Python rocks":

print(s[7:])

print(s[7:20])

print(s[-5:])

print(s[-5::1])

print(s[-5::])

Given the the string, py ="pythonic", select all the python constructs that give you the letter n:

print(py[6:5])

print(py[5:6])

print(py[-3])

print(py[5])

print(py[-3:-2])

Select what Python string method can be used to indicate whether a given string is a keyword in Python?

Note: below str represent a given string.

str.isupper()

str.isalnum()

str.isascii()

str.isnumeric()

str.isidentifier()

Select the outcome of the following lines of code:

py ="python"

print(py[len(py)-1])

an error

p

n

t

h

Select all Python operators that can be operated upon string(s):

+

*

==

<=

is

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Dear Student ,

As per the requirement submitted above , kindly find the below solution.

Question :

Answer :

Python uses indexing operator (square brackets) to select a single character from a string

Python supports indexing in both left to right and right to left

Left to right indexing starts with 0

Right to left indexing starts with -1

Explanation :All above statements in python are true.The return type of a string index is also a index number hence it is false.

******************************

Question :

Answer :

print(s[7:])

print(s[7:20])

print(s[-5:])

print(s[-5::1])

print(s[-5::])

Explanation :All above are correct way of extract "rocks" out of s = "Python rocks".Below screen shows the details.

main.py 1 s Python rocks 2 print (s[7:]) 4 print (s[7:20]) 5 6 print (s[-5:]) 7 8 print (s-5::1]) 10 print (s[-5::]) rocks

***************************

Question :

Answer :

print(py[5:6])

print(py[-3])

print(py[5])

print(py[-3:-2])

Explanation :All above are correct way of getting n out of given string in python.Below screen gives more details

main.py 1 py pythonic 2 print (py[6:5]) 4 print (pyI5:6]) print (py[-3]) print (py [5]) print(py[-3:-2]) 7 8 10 . .Program

***************************

Question :

Answer :None of the above

Explanation :In given option none of the method is used to find the given string is keyword or not.Below are details

  • isupper() :returns if all characters are uppercase characters
  • isascii():It returns a string containing printable representation of an object.
  • isalnum() :Checks Alphanumeric Character
  • isnumeric() :Checks Numeric Characters
  • isidentifier():Checks for Valid Identifier

***************************

Question :

Answer :n

Explanation :Given code will return n.Below is the screen

main.py 1 py python 2 print(pye(py)-1]) 4 . .Program finished with exit code 0 Press ENTER to exit console

***************************

Question :

Answer :

+

==

<=

is

Explanation :Below screen gives details

main.py a-python 2 b-demo 3 print (a+b) 4 print (a-b) 5 print (a<-b) 6 print (a is b) ythondemo False False False . . .Pr

***************************

NOTE : PLEASE FEEL FREE TO PROVIDE FEEDBACK ABOUT THE SOLUTION.

Add a comment
Know the answer?
Add Answer to:
Select all true statements about Python string indexing: Python uses indexing operator (square br...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • 1) Which of the following is NOT true about a Python variable? a) A Python variable...

    1) Which of the following is NOT true about a Python variable? a) A Python variable must have a value b) A Python variable can be deleted c) The lifetime of a Python variable is the whole duration of a program execution.   d) A Python variable can have the value None.        2) Given the code segment:        What is the result of executing the code segment? a) Syntax error b) Runtime error c) No error      d) Logic error 3) What...

  • Help C++ Write a string class. To avoid conflicts with other similarly named classes, we will...

    Help C++ Write a string class. To avoid conflicts with other similarly named classes, we will call our version MyString. This object is designed to make working with sequences of characters a little more convenient and less error-prone than handling raw c-strings, (although it will be implemented as a c-string behind the scenes). The MyString class will handle constructing strings, reading/printing, and accessing characters. In addition, the MyString object will have the ability to make a full deep-copy of itself...

  • Python Programming: An individual playing card is represented as a string of two characters: • the...

    Python Programming: An individual playing card is represented as a string of two characters: • the first character is from "23456789TJQKA" and represents the rank, i.e., the number or value of the card. (Note that 10 is encoded as letter T to make all card ranks to be single letters) • the second character is from "cdhs" and represents the suit (clubs, diamonds, hearts and spades respectively). For example, "Jd" would be the jack of diamonds, and "4s" would be...

  • python Programming assignment: Let's think about doubly-linked lists. Define a class ListNode2, with three attributes: item,...

    python Programming assignment: Let's think about doubly-linked lists. Define a class ListNode2, with three attributes: item, left, and rightL. Left link points to the previous node in the list, right link points to the next node in the list. You can also add the display method to this class (like we did it in class for the ListNode class). Then test your class. For example, create a linked list of 5 values: 34,1, 23, 7, and 10. Display it. Then...

  • Question 1 Not yet answered Marked out of 1.00 Not flaggedFlag question Question text The statements...

    Question 1 Not yet answered Marked out of 1.00 Not flaggedFlag question Question text The statements inside of a Python loop are known as the ____ of the loop. Select one: a. body b. expression c. counter d. block Question 2 Not yet answered Marked out of 1.00 Not flaggedFlag question Question text The Python 3 program below prints the number 3. s = "Python3" print(s[len(s)]) Select one: True False Question 3 Not yet answered Marked out of 1.00 Not...

  • **TStack.py below** # CMPT 145: Linear ADTs # Defines the Stack ADT # # A stack (also called a pushdown or LIFO stack)...

    **TStack.py below** # CMPT 145: Linear ADTs # Defines the Stack ADT # # A stack (also called a pushdown or LIFO stack) is a compound # data structure in which the data values are ordered according # to the LIFO (last-in first-out) protocol. # # Implementation: # This implementation was designed to point out when ADT operations are # used incorrectly. def create(): """ Purpose creates an empty stack Return an empty stack """ return '__Stack__',list() def is_empty(stack): """...

  • (1) Identify the true statements about overloaded methods. Select ALL that apply. a. they can have...

    (1) Identify the true statements about overloaded methods. Select ALL that apply. a. they can have different parameter types b. they can have different return types c. they must have different modifiers d. they can have a different number of parameters e. they must have the same method name (2) 6. int length = 5, width = 8; 7. area(length, width); As used in line 7, length and width are called the __?__ of the area method. (3) public static...

  • Question 1 Select all the choices producing a string which contains multiple lines? Examples of each of the choices are presented below. #---------Option A--------------- s = ("Line 1","L...

    Question 1 Select all the choices producing a string which contains multiple lines? Examples of each of the choices are presented below. #---------Option A--------------- s = ("Line 1","Line 2") #---------Option B--------------- s = """Line 1 Line 2""" #---------Option C--------------- s = "Line 1\nLine 2" #---------Option D--------------- s = "Line 1" + "Line 2" #Option D Make your statements look the same as the examples. A. Using commas to separate lines B. Using triple-quotation marks C. Adding the newline character between...

  • 1 pts Question 1 Select all of the following that are true about magnets and magnetic...

    1 pts Question 1 Select all of the following that are true about magnets and magnetic fields. the source of magnetic fields is net motion of charged particles the South pole of a bar magnet can be separated from the North pole to make two monopoles like magnetic poles IS and S, or N and N) repel and opposites attract IN and S) □ magnetic field lines always form closed loops magnetic fields are scalars a straight wire with current...

  • YOU NEED TO MODIFY THE PROJECT INCLUDED AT THE END AND USE THE INCLUDED DRIVER TO...

    YOU NEED TO MODIFY THE PROJECT INCLUDED AT THE END AND USE THE INCLUDED DRIVER TO TEST YOUR CODE TO MAKE SURE IT WORK AS EXPECTED. Thanks USING PYTHON, complete the template below such that you will provide code to solve the following problem: Please write and/or extend the project5 attached at the end. You will have to do the following for this assignment: Create and complete the methods of the PriceException class. Create the processFile function. Modify the main...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT