Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Suppose you typed the following Python code: What is a Python code to print rld from the variable myStr? Is there another Python code to

Suppose you typed the following Python code:

What is a Python code to print rld from the variable myStr?

Is there another Python code to print rld from the variable myStr? If yes, what is it?

Write Python code which generates the following list: [0, 1, 4, 9, 16]. You should use for-loop and the append method of list (the append method should be inside of the for-loop). You can start your code as the below:

 l = [] # empty list 

You should use for-loop and the append method of list (the append method should be inside of the for-loop). You can start your code as the below:

Write Python code which generates the following list: [0, 1, 4, 9, 16]. You should use for-loop and the extend method of list (the extend method should be inside of the for-loop, and you should not use the append method). You can start your code as the below:

 l = [] # empty list 

Suppose that you have defined a dict object as follows:

Write Python code to add a pair of key and value: Eye color, Brown. Your answer should not be the code below:

d={

myStr = 'Hello World' 

3. Write Python code, equivalent to the following code:

l = [randint(0, 10) for i in range(10)]

from random import randint 

l = [] # empty list 

d={ 'Name': 'Angela Merkel',

 'Country': 'Germany', 'Profession': 'Chancellor', 'Age': 64 

}

'Name': 'Angela Merkel', 'Country': 'Germany', 'Profession': 'Chancellor', 'Age': 64, 
 'Eye color': 'Brown' } 

Suppose that you have defined a numpy 2D array as follows:

Write Python code to make the array flatten: [ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14]. You should use nested for-loop instead of h.flatten() or h.ravel(). You can start your code as the below:

 l = [] # empty list 

Save both your Python codes and results as a PDF file and submit it to Blackboard. Name your file as

import numpy as np h = np.array([[0, 1, 2], 
[3, 4, 5], [6, 7, 8], [9, 10, 11], [12, 13, 14]]) 

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

Business Process Driven Database Design With Oracle PL SQL

Authors: Rajeev Kaula

1st Edition

1795532386, 978-1795532389

More Books

Students also viewed these Databases questions