Please answer the ques in python with showing the answers ( There is only 1 ques in 2 steps) Step1: Demonstrate your knowledge of if, elif and else: Create a variable gpa. Set it to a number between 0 and 4 Given: great >=3.5, good>=2.5 and <3.5, you really need to study more <2.5 Write python statements which produce one line of output -just one of the below Output: You are a great student! You are a good student! You really need to study more! Step 2: Given this list of metals - 'tin', 'copper', 'brass', 'gold', 'iron' Write a program to loop through each element and use a conditional test to match the output below. Capitalization counts. Output: Darn Tin, I have no luck Darn Copper, I have no luck Darn Brass, I have no luck Gold, Gold, I'm rich, I'm rich! Darn Iron, I have no luck
Please answer the ques in python with showing the answers ( There is only 1 ques in 2 steps)
Step1:
Demonstrate your knowledge of if, elif and else:
Create a variable gpa. Set it to a number between 0 and 4
Given: great >=3.5, good>=2.5 and <3.5, you really need to study more <2.5
Write python statements which produce one line of output -just one of the below
Output:
You are a great student!
You are a good student!
You really need to study more!
Step 2:
Given this list of metals - 'tin', 'copper', 'brass', 'gold', 'iron'
Write a
Output:
Darn Tin, I have no luck
Darn Copper, I have no luck
Darn Brass, I have no luck
Gold, Gold, I'm rich, I'm rich!
Darn Iron, I have no luck
Trending now
This is a popular solution!
Step by step
Solved in 5 steps with 2 images