Question: Question: Before you begin, run this cell with with the code provided below.This will return ( output ) where your Jupyter Notebook

Question: """ Before you begin, run this cell with with the code provided below.This will return (output) where your Jupyter Notebook file is located on your computer."""import osos.getcwd()#1. Assign any integer value to my_int and run the cell display the output from my_int.my_int =-- #replace the --- symbol with an appropriate valueprint(my_int)#2. Assign any""" Before you begin, run this cell with with the code provided below.This will return (output) where your Jupyter Notebook file is located on your computer."""import osos.getcwd()#1. Assign any integer value to my_int and run the cell display the output from my_int.my_int =-- #replace the --- symbol with an appropriate valueprint(my_int)#2. Assign any float value to my_float and run the cell display the output from my_float.my_float =--- #replace the --- symbol with an appropriate valueprint(----) #replace the --- symbol with the appropriate variable#3. Run the cell to view the output below.print("Total:", my_int + my_float)Part 2 Srtings#1. Include your first name and last name as a string inside a print function.Last name is Green, First name is Cat"""#2. Assign your first name and last name as string values using the predefined variables below.Include each variable as an argument in one print function to display your full name (e.g., print(var1, var2))."""firstName =--- #replace the --- symbol with an appropriate valuelastName =--- #replace the --- symbol with an appropriate valueprint(---) #replace the --- symbol with the appropriate variables"""#3. Use the print function and include the first name variable andconcatenate (+ symbol) it with the last name variable.Note: A space (i.e.,"") between the two first name and last name will be needed.""""""#4. Create a variable named courses and assign it an integer value which represents thenumber of courses you are taking this semester.Then use the print function to display the variable's content."""#5 Convert the value type in courses to a float using the float() function.# Then use the print function to display the variable's content.#6. Use the type() function to display the data type for the courses variable."""#7. Use a print function to output: Hello! My name is ____! I'm taking ____ courses.Your code must fill in the blanks by referring to the existing variables previously defined."""Part 3 Lists"""#1. Create a variable named my_list that contains a list of any fournumbers that range between 0 and 50.Then output the variable values usingthe print function.""""""#2. Use the append() method on my_list to include an additional number (int or float value) to the list.Then output the variable values using the print function.#3. Use the len() function on my_list to display the number of elements.#4. Use the sort() method to order the elements in my_list.# Then output the list using the print function.#5. Use the max() function on my_list.#6. Find the 2nd element in my_list using indexing notation (square brackets []).# Then output the result using the print function.#7. Use the len() and sum() functions to calculate the mean value in my_list. (mean = sum()/ len())print("Sum of values:", sum(my_list))print("Number of values:", len(my_list))mean = sum(---)/ len(---) #replace the --- symbol with the appropriate sytnaxprint(mean)Complete the code below by entering values for each key with your first name and last namemy_dict ={"firstName": ---, "lastName": ---} # Remove the --- symbol and enter the string valuesprint(my_dict) # run cell to display my_dict#2. Update the dictionary variable (my_dict) to include the key-value pair "course": "MIS 433".# Then output the content from the variable using the print function."""Part 5 Frixing errors(Debugging)#1. Fix the NameError. The code should return (or output) the content stored in the defined variabletitle = "Programming for Analytics"print(titles)#2. Fix the the SyntaxError. The code should return the content as a float value of 3.00course_credit =3.00'print(course_no)#3. Fix the TypeError. The code should return the content as MIS-433-DLcourse_category = "MIS-"course_number =433course_modality ="-DL"print(course_category + course_number + course_modality)Please help me to slove all of the problems above using jupyter notebook.I need it quickly so please tell me the answers to each question please

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!