The world’s Largest Sharp Brain Virtual Experts Marketplace Just a click Away
Levels Tought:
Elementary,Middle School,High School,College,University,PHD
| Teaching Since: | Apr 2017 |
| Last Sign in: | 103 Weeks Ago, 3 Days Ago |
| Questions Answered: | 4870 |
| Tutorials Posted: | 4863 |
MBA IT, Mater in Science and Technology
Devry
Jul-1996 - Jul-2000
Professor
Devry University
Mar-2010 - Oct-2016
Hey kolonebuddah, here is that lab that was on python. 5 problems to be done on python.
Â
_______________________________________________________________________CIS115INTRODUCTION TO PROGRAMMING AND LOGIC_______________________________________________________________________LAB 05DECISION STRUCTURES [PART 2]OBJECTIVESIn this lab assignment, students will learn:- How to write code to select from multiple options- How to write code to check numeric ranges- How to write code to convert case for strings- How to create and use nested decision structuresGOALSIn this lab assignment, students will demonstrate the abilities to:- Write code to select from multiple options- Write code to check numeric ranges- Write code to convert case for strings- Create and use nested decision structuresINSTRUCTIONANDPROBLEMSWrite a Python program for each of the problems in this lab.The following isan example.A teacher wishes to display the letter grade for a student’s test score.The letter grades are determined as follows:A: for 90 or aboveB: for 80 or above, but less than 90C: for 70 or above, but less than 80D: for 60 or above, but less than 70F: for less than 60Write a program that requests a test score and displays the letter grade.Python program:__author__ ='Man-Chi Leung'
Attachments:
-----------