logo Use CA10RAM to get 10%* Discount.
Order Nowlogo
(5/5)

Write a program that creates a list object. The list should have nine different items (coffee, tea, sugar, milk, rice, carrots, cabbage, basil, parsley).

INSTRUCTIONS TO CANDIDATES
ANSWER ALL QUESTIONS

Python stream programming labs

DATA STRUCTURES LAB

Using data structures to hold different types of information.

 (based on the data structures lecture material).

Welcome to the Data Structures lab. The tasks in the lab will focus on using different types of data structures, ranging from strings to lists, tuples and dictionaries.

 

Marks:

  • The Data Structures lab is worth 10% of Portfolio 2.
  • Portfolio 2 is worth 40% of the teaching block marks

 

Task1

 Write a program that creates the string object:

testString1 = ‘This is a test string’

Access individual characters in the string to display the following to the screen:

  • The first character of the string
  • The first 6 characters of the string
  • The fourth, fifth and sixth characters of the string
  • The last six characters of the string

 

Next, check if the character “h” is included in the phrase “this is a test string” and display the result to the screen in the form of the following sentence:

It is True that h is included in This is a test string

The values in blue should be supplied by the program.

 

Task2

Write a program that creates four string objects:

testString2 = ‘the python standard library’

testString3 = ‘hello’

testString4 = ‘hello everyone’

testString5 = testString5 = 'hello everyone here and everyone watching on TV'

Now test if testString2 ends with the characters ‘ry’. Output the result in a sentence in the form below with the values in blue supplied by the program:

It is True that the python standard library ends with ry 

Now test if testString3 and testString4 contain only characters from the alphabet. Ouput the results in two sentences in the form below with the values in blue supplied by the program

It is True that hello contains all alphabetic characters

 Now take testString4 and testString5 and replace the word ‘everyone’ with ‘you people’ using an appropriate built-in string method. You should output

hello you people

hello you people here and you people watching on TV 

Now take testString5 and replace the first word ‘everyone’ with ‘you people’ using an appropriate built-in string method, but this time leave the second ‘everyone’ in testString5 the same. You should output

hello you people here and everyone watching on TV 

 

Task 3: 

  • Use the list data structure to create a list to hold the names of five different Python IDEs and display the list to the screen:
  • Using an appropriate method, add a sixth Python IDE name to the list and display the length of the list to the screen.
  • Next, delete the first item on the list and print out the length of the list.
  • Using an appropriate method, arrange the list in alphabetical order and display the list to the screen. 

Task 4 

Write a program that creates a list object. The list should have nine different items (coffee, tea, sugar, milk, rice, carrots, cabbage, basil, parsley).

Display to the screen:

The length of the list

The list in reverse order

The list in alphabetical order.

You release you have forgotten to add fruit to the list. Insert three different types of fruit between the milk and the parsley on the alphabetically sorted list.

You realise that you have enough coffee and tea. Replace the coffee and tea with pasta and beans respectively.

Re-sort the list alphabetically and display the final list to the screen.

Your output should take the following form:

['coffee', 'tea', 'sugar', 'milk', 'rice', 'carrots', 'cabbage', 'basil', 'parsley']

The shopping list is 9 items long

The list in reverse order is ['parsley', 'basil', 'cabbage', 'carrots', 'rice', 'milk', 'sugar', 'tea', 'coffee']

['basil', 'cabbage', 'carrots', 'coffee', 'milk', 'parsley', 'rice', 'sugar', 'tea']

['basil', 'cabbage', 'carrots', 'coffee', 'milk', 'oranges', 'apples', 'bananas', 'parsley', 'rice', 'sugar', 'tea']

['basil', 'cabbage', 'carrots', 'pasta', 'milk', 'oranges', 'apples', 'bananas', 'parsley', 'rice', 'sugar', 'beans']

['apples', 'bananas', 'basil', 'beans', 'cabbage', 'carrots', 'milk', 'oranges', 'parsley', 'pasta', 'rice', 'sugar']

 

Task5 

A company has asked an employee to submit the kilometres they have undertaken on behalf of the company over the last month in order that they can claim their expenses. The company will pay their employee 40 pence per mile, so you should first convert the employees list given in km, to miles before calculating the cost.

Create a list object to hold the mileage covered on different trips:

employee1 = [35, 54, 200, 37, 45, 67]

The program should produce a new list for the employee that shows the amount that will be repaid for each journey. The program should also calculate the total cost for all the journeys. The output to the screen should look like:

Employee1 list in cost is [8.7, 13.42, 49.71, 9.2, 11.18, 16.65]

Final cost is 108.86

(5/5)
Attachments:

Related Questions

. Introgramming & Unix Fall 2018, CRN 44882, Oakland University Homework Assignment 6 - Using Arrays and Functions in C

DescriptionIn this final assignment, the students will demonstrate their ability to apply two ma

. The standard path finding involves finding the (shortest) path from an origin to a destination, typically on a map. This is an

Path finding involves finding a path from A to B. Typically we want the path to have certain properties,such as being the shortest or to avoid going t

. Develop a program to emulate a purchase transaction at a retail store. This program will have two classes, a LineItem class and a Transaction class. The LineItem class will represent an individual

Develop a program to emulate a purchase transaction at a retail store. Thisprogram will have two classes, a LineItem class and a Transaction class. Th

. SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 1 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

. Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of Sea Ports. Here are the classes and their instance variables we wish to define:

1 Project 2 Introduction - the SeaPort Project series For this set of projects for the course, we wish to simulate some of the aspects of a number of

Ask This Question To Be Solved By Our ExpertsGet A+ Grade Solution Guaranteed

expert
Um e HaniScience

794 Answers

Hire Me
expert
Muhammad Ali HaiderFinance

953 Answers

Hire Me
expert
Husnain SaeedComputer science

691 Answers

Hire Me
expert
Atharva PatilComputer science

692 Answers

Hire Me

Get Free Quote!

383 Experts Online