Product of the Given Numbers
Write a Python program of Product of the Given Numbers. It consists of two test cases
The below link contains Product of the Given Numbers - Question, explanation and test cases
https://drive.google.com/file/d/10Nz6JMLsNfGXtA3WhaSYcRx5IO8JqieU/view?usp=sharing
We need all test caese can be come while code was running
Solid Rectangle - 2
Write a Python program of Solid Rectangle - 2. It consists of two test cases
The below link contains Solid Rectangle - 2 - Question, explanation and test cases
https://drive.google.com/file/d/1V8bS9t2PaO1gOhz3QSWNJfnTkCZnncf3/view?usp=sharing
We need all test caese can be come while code was running
Print Integers - 3
Write a Python program of Print Integers - 3. It consists of two test cases
The below link contains Print Integers - 3 - Question, explanation and test cases
https://drive.google.com/file/d/1Dzc7mWib2PaqHxt4aDmjmQr00pR0aZPg/view?usp=sharing
We need all test caese can be come while code was running
Denominations - 3
Write a Python program of Denominations - 3. It consists of two test cases
The below link contains Denominations - 3 - Question, explanation and test cases
https://drive.google.com/file/d/1W-q6iUJbpoqxvZBPcGPX7afOYu73Veui/view?usp=sharing
We need all test caese can be come while code was running
Denominations - 4
Write a Python program of Denominations - 4. It consists of two test cases
The below link contains Denominations - 4 - Question, explanation and test cases
https://drive.google.com/file/d/1V_Mddi69HHGThW1V4Y04zgHkes46CIJF/view?usp=sharing
We need all test caese can be come while code was running
Denominations - 2
Write a Python program of Denominations - 2. It consists of two test cases
The below link contains Denominations - 2 - Question, explanation and test cases
https://drive.google.com/file/d/1DDPxBvRR7xx5Mbm68ThgRUe0h6QoOrQB/view?usp=sharing
We need all test caese can be come while code was running
Given a string, write a program to print a secret message that replaces characters with numbers 'a' with 1, 'b' with 2, ..., 'z' with 26 where characters are separated by '-'.
Note: You need to replace both uppercase and lowercase characters. You can ignore replacing all characters that are not letters.
abcdefghij12345678910
klmnopqr1112131415161718
stuvwxyz1920212223242526Input
The input will be a string in the single line containing spaces and letters (both uppercase and lowercase).Output
The output should be a single lline.
Explanation
For example, if the given input is "python", "p" should replaced with "16", similarly"y" with "25","t" with "20","h" with "8","o" with "15","n" with "14". So the output should be "16-25-20-8-15-14".
Input is python learning
Output should be 16-25-20-8-15-14 12-5-1-18-14-9-14-7
IPL Match Details
Write a program that reads all the match outcomes and summarizes the information of all the matches.
Points are given to the teams based on the outcome of the match.
A win earns a team 3 points. A draw earns 1. A loss earns 0.
The following information is expected:
MP: Matches Played
W: Matches Won
D: Matches Drawn (Tied)
L: Matches Lost
P: Points
The team information should be displayed in descending order of points.Input
Names of teams may contain spaces but will be less than 24 characters
100 >= N >= 0
Sample Input1
6
CSK;RR;loss
RR;DD;draw
MI;KKR;win
KKR;RR;loss
CSK;DD;draw
MI;DD;draw
Sample Output 1
Team: RR, Matches Played: 3, Won: 2, Lost: 0, Draw: 1, Points: 7
Team: MI, Matches Played: 2, Won: 1, Lost: 0, Draw: 1, Points: 4
Team: DD, Matches Played: 3, Won: 0, Lost: 0, Draw: 3, Points: 3
Team: CSK, Matches Played: 2, Won: 0, Lost: 1, Draw: 1, Points: 1
Team: KKR, Matches Played: 2, Won: 0, Lost: 2, Draw: 0, Points: 0
Sample input 2
Sample output 2
No output