Question

In: Computer Science

What is an escape sequence? Give an example in Python, and describe what it does. What...

What is an escape sequence? Give an example in Python, and describe what it does.

What Python function is used to determine the length of Python objects such as lists, tuples and string literals?

For the string literal “Bjorggson”, show by Python code example how to obtain the fourth character of that string.

Show by code example in Python how to concatenate two strings and assign the result to a variable.

Declare a Python list named famfri with the first names of five friends or family members.

Lists and tuples are examples of what kind of Python construct?


Write a Python for loop that prints the names of the friends or family, one per line, without referencing a range or any literal numeric values.

Solutions

Expert Solution

1. Escape Sequence : In python , Escape sequences art used to represent special set of characters.For example : \n is used to get to the next line.

Consider the code :

print("Hello\nWorld")

output :

Hello

World

2. len() function is an inbuild function in Python which is used to determine the length of the python objects such as lists and strings.

Consider the following Code :

print(len("Hello")) #len function used to determine the length of string hello

Output :

5

3. Consider the following code :

StringName = 'Bjorggson'
print(StringName[3])

The above code is used to get the fourth character in the string.

Output :

r

4. consider the following code :

a = 'Hello' #created first string
b = 'World' #created second string
c = a + b #concatenated two strings and assigned to a variable.
print(c)

Output :

HelloWorld

5. consider the following code :

famfri = ['A', 'B', 'C', 'D' , 'E'] # list with name famfri is created for storing first name of five friends or family members.
print(famfri)

Output :

['A', 'B', 'C', 'D' , 'E']

6. consider the following code to print family name line by line using for loop without range  :

famfri = ['A', 'B', 'C', 'D' , 'E']

for names in famfri :
print(*famfri, sep = '\n')
break;

Output :

A

B

C

D

E


Related Solutions

What is a competitive market? Describe and give an example.
What is a competitive market? Describe and give an example.
What does the escape clause mean? What are safeguard tariffs?
What does the escape clause mean? What are safeguard tariffs?
What does it mean to declare a variable? Give an example.
C++ programming homeworkWhat does it mean to declare a variable? Give an example.What does it mean to assign a value to a variable? Give an example.What is the different between assigning and initializing? Give examples.
Give an example of a market distortion and explain what it does to the market.
Give an example of a market distortion and explain what it does to the market.
python 3 Post an example of a fruitful function, adding comments to explain what it does....
python 3 Post an example of a fruitful function, adding comments to explain what it does. Then add an example of how to call the function and use its return value. Remember, unless the goal of a function is to print, there should be no print statements. A fruitful function uses return to give results back to main. The function we name main, will take care of getting input, pass it to other functions, and those functions will return results...
Describe what is a competitive advantage and give an example. (200 word)
Describe what is a competitive advantage and give an example. (200 word)
Please provide Python code that does the following: 2) A palindrome is any sequence of characters...
Please provide Python code that does the following: 2) A palindrome is any sequence of characters that reads the same backwards as forwards. One-word examples include: Dad madam rotor Kayak redder noon For the sake of this exercise, the following may also be considered one-word palindromes: 1881 zap4554paz That is, numeric strings and “nonsense” strings that read the same backwards as forwards should be classified as palindromes. Write a program that takes as input a string and determines if it’s...
What does the term "Oppression Olympics" mean? and give example. What does the term "intersectionality" off...
What does the term "Oppression Olympics" mean? and give example. What does the term "intersectionality" off us? What I mean is there are lots and lots of academic terms, right? So what's new about intersectionality? What does it do that other terms have not done? Does it "advance" other theories? Can you name another Intersectional system? Or just start here: Can you name another system where you are both the oppressor and the oppressed within the same system? It's not...
What does it mean to have a “future taxable amount” and give an example of a...
What does it mean to have a “future taxable amount” and give an example of a temporary difference that would create a deferred tax liability, and what does it mean to have a “future deductible amount” and give an example of a temporary difference that would create a deferred tax asset?
Return on assets =  Explain what does this measure  Formula  Give an example...
Return on assets =  Explain what does this measure  Formula  Give an example of the calculation Asset turnover =  Explain what does this measure  Formula  Give an example of the calculation Payout ratio =  Explain what does this measure  Formula  Give an example of the calculation Return on common stockholders’ equity  Explain what does this measure  Formula  Give an example of the calculation
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT