Exercises Write a Python program to find the repeated items of a tuple. 2) Write a Python program to check whether an element exists within a tuple. 1) 3) Check if all items in the following tuple are...


Exercises<br>Write a Python program to find the repeated items of a tuple.<br>2) Write a Python program to check whether an element exists<br>within a tuple.<br>1)<br>3) Check if all items in the following tuple are the same<br>tuplel = (45, 45, 45, 45)<br>4)<br>Fractions:<br>You can express a fraction as a tuple: (numerator,<br>denominator).<br>(a) Write a function that multiplies two fractions that are<br>passed as tuples.<br>5) Blocks of Stock. A block of stock as a number of attributes,<br>including a purchase date, a purchase price, a number of shares,<br>and a ticker symbol. We can record these pieces of information<br>in a tuple for each block of stock and do a number of simple<br>operations on the blocks.<br>Let's dream that we have the following portfolio.<br>Current<br>Purchase Date Purchase Price Shares Symbol<br>Price<br>25 Jan 2001<br>43.50<br>25<br>CAT<br>92.45<br>25 Jan 2001<br>42.80<br>50<br>DD<br>51.19<br>25 Jan 2001<br>42.10<br>75<br>EK<br>34.87<br>25 Jan 2001<br>37.58<br>100<br>GM<br>37.58<br>We can represent each block of stock as a 5-tuple with purchase<br>date, purchase price, shares, ticker symbol and current price.<br>portfolio= [ (

Extracted text: Exercises Write a Python program to find the repeated items of a tuple. 2) Write a Python program to check whether an element exists within a tuple. 1) 3) Check if all items in the following tuple are the same tuplel = (45, 45, 45, 45) 4) Fractions: You can express a fraction as a tuple: (numerator, denominator). (a) Write a function that multiplies two fractions that are passed as tuples. 5) Blocks of Stock. A block of stock as a number of attributes, including a purchase date, a purchase price, a number of shares, and a ticker symbol. We can record these pieces of information in a tuple for each block of stock and do a number of simple operations on the blocks. Let's dream that we have the following portfolio. Current Purchase Date Purchase Price Shares Symbol Price 25 Jan 2001 43.50 25 CAT 92.45 25 Jan 2001 42.80 50 DD 51.19 25 Jan 2001 42.10 75 EK 34.87 25 Jan 2001 37.58 100 GM 37.58 We can represent each block of stock as a 5-tuple with purchase date, purchase price, shares, ticker symbol and current price. portfolio= [ ( "25-Jan-2001", 43.50, 25, 'CAT', 92.45 ), ( "25-Jan-2001", 42.80, 50, 'DD', 51.19 ), ( "25-Jan-2001", 42.10, 75, 'EK', 34.87 ), ( "25-Jan-2001", 37.58, 100, 'GM', 37.58 )] Develop a function that examines each block, multiplies shares by purchase price and determines the total purchase price of the portfolio. OPEN IN...

Jun 06, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here