Write a function that takes a list as a parameter. The list will contain a mixture of integers and letters. Your function should return a modified list so that 1. If the number of integers is twice the number of letters (no of integers = 2* no of letters), then the list should contain 2 integers followed by 1 letter consecutively 2. If the ratio of letters is 3 times more than the number of integers (ratio is 3), then the list should contain 3 letters followed by 1 integer consecutively. Ratio (no of letters)/(no of integers) 3. For other cases, arrange the integers and letters alternatively. Take the list as an input from the user, pass it to a function and then print the returned list. Hints: use built-in ord() function to identify letters and numbers. Sample Input: Enter the list elements: 2 r 6 7 a4 b79cd5370 Function Call: ========== function_name(['2', 'r', '6', '7', 'a', '4', 'b', '7', '9', 'c', 'd', '5', '3', '7', '0']) Sample Output: ['2', '6', 'r', '7', '4', 'a', '7', '9', 'b', '5', '3', 'c', '7', '0', 'd']

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question
Write a function that takes a list as a parameter. The list will contain a mixture of integers and letters. Your function should return a modified list so that
1.
If the number of integers is twice the number of letters (no of integers = 2* no of letters), then the list should contain 2 integers followed by 1 letter consecutively.
2.
If the ratio of letters is 3 times more than the number of integers (ratio is 3), then the list should contain 3 letters followed by 1 integer consecutively.
Ratio (no of letters)/(no of integers)
3.
For other cases, arrange the integers and letters alternatively.
Take the list as an input from the user, pass it to a function and then print the returned list.
Hints: use built-in ord() function to identify letters and numbers.
Sample Input:
Enter the list elements: 2 r 67 a4 b79cd5370
Function Call:
function_name(['2', 'r', '6', '7', 'a', '4', 'b', '7', '9', 'c', 'd', '5', '3', '7', '0'])
Sample Output:
['2', '6', 'r', '7', '4', 'a', '7', '9', 'b', '5', '3', 'c', '7', '0', 'd']
Transcribed Image Text:Write a function that takes a list as a parameter. The list will contain a mixture of integers and letters. Your function should return a modified list so that 1. If the number of integers is twice the number of letters (no of integers = 2* no of letters), then the list should contain 2 integers followed by 1 letter consecutively. 2. If the ratio of letters is 3 times more than the number of integers (ratio is 3), then the list should contain 3 letters followed by 1 integer consecutively. Ratio (no of letters)/(no of integers) 3. For other cases, arrange the integers and letters alternatively. Take the list as an input from the user, pass it to a function and then print the returned list. Hints: use built-in ord() function to identify letters and numbers. Sample Input: Enter the list elements: 2 r 67 a4 b79cd5370 Function Call: function_name(['2', 'r', '6', '7', 'a', '4', 'b', '7', '9', 'c', 'd', '5', '3', '7', '0']) Sample Output: ['2', '6', 'r', '7', '4', 'a', '7', '9', 'b', '5', '3', 'c', '7', '0', 'd']
Expert Solution
steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY