Question

In: Computer Science

Question4: Create and use a lambda expression which calculates the sum of three numbers. Ask the...

Question4: Create and use a lambda expression which calculates the sum of three numbers. Ask the user for three numbers and use the lambda function to print the sum [6 marks]

Question5:

Write a generator function which generates the Fibonacci series. [0,1,2,4,8,16,…]. The Fibonacci series is a list of numbers where each number is the sum of the previous two. [3 marks]
Then write the code to iterate through the first six numbers of sequence. [3 marks]
Question6: Write a program to read the file 202010mid.txt, store the content in a list of tuples, then print the list. [6 marks]

Question7: Write Python code to do the following operations using request library. [12 marks]

Check if the following webpage is available or not: https://edition.cnn.com/news.html [4 marks]
Send a get request to the following webpage and show the result: http://api.open-notify.org/iss-pass.json [4 marks]
The webpage from part 2 is expecting some parameters as shown from the results. Now create a parameter with two key:value pairs as per the following: lat with value 40.71 and lon with value -74. Send a get request now with the parameter you created and display the result.[4 marks]

Solutions

Expert Solution

# Q.4 performing a addition of three number 
print("Please enetr three numbers")
a=int(input())
b=int(input())
c=int(input())
summ = (lambda x, y, z: (x + y) + z)(a, b, c) 
print("sum is:",summ) 

#Q.5 Python program to print first n Fibonacci numbers 

def printFibonacciNumbers(n): 
        
        f1 = 0
        f2 = 1
        if (n < 1): 
                return
        for x in range(0, n): 
                print(f2, end = " ") 
                next = f1 + f2 
                f1 = f2 
                f2 = next
print("\nFirst 6 numbes of Fibonacci series are: ")             
printFibonacciNumbers(6) 

I hope it helps.


Related Solutions

Create a bash script that takes numbers as parameters, calculates sum and prints the result. If...
Create a bash script that takes numbers as parameters, calculates sum and prints the result. If no parameters passed, prompt a user (only one time) to enter numbers to sum and print the result.
Bash script: Create a bash script that takes numbers as parameters, calculates sum and prints the...
Bash script: Create a bash script that takes numbers as parameters, calculates sum and prints the result. If no parameters passed, prompt a user (only one time) to enter numbers to sum and print the result. Submit your program as LastName_FirstName.sh file.
Make a function that calculates the summation of even numbers in the range. The function sum...
Make a function that calculates the summation of even numbers in the range. The function sum takes the two integer parameters and they are used as the range. The function uses default parameters for the range. When we call this function with one argument, it will be used as a starting point and the end of the range will be 100. Also, the function is called without any argument, the default range (0,100) will be used. We will use default...
USE PYTHON. Create a program that will ask a user to enter whole positive numbers. The...
USE PYTHON. Create a program that will ask a user to enter whole positive numbers. The program will use a while loop to let the program keep running. The user will be allowed to use the program as long as the quitVariable is equal to 'y' or 'Y'. When the user decides to quit playing, say "Thanks for playing!". The program will use a for loop to test if the number are even or odd. If even print "number is...
Write a python programA3) Lambda Expressions. Use lambda expression to sort the list ["democratic", "republican", "equal",...
Write a python programA3) Lambda Expressions. Use lambda expression to sort the list ["democratic", "republican", "equal", "python", "break", "two", "ruby"] by: a) the last 2 characters of each list item in reverse order b) create new list from list above where each item has only 3 characters and first one is capitalized. For example, the list item = "democratic" will transform into "Dem". Apply alphabetically sorting to the new list.  
1. A) How many three-digit numbers are there for which the sum of the digits is...
1. A) How many three-digit numbers are there for which the sum of the digits is at least 25? B) How many three-digit numbers can be formed if only odd numbers are allowed to be re-used Please combinatorics principles where applicable.
Use calculus to find three positive numbers that sum to 150 with the greatest possible product.
Use calculus to find three positive numbers that sum to 150 with the greatest possible product.
The sum of three nonnegative numbers is 36. One of the numbers is twice one of...
The sum of three nonnegative numbers is 36. One of the numbers is twice one of the other numbers. None of the numbers are greater than 12. What is the maximum value of the product of these three numbers? Use x, y, z as your variables
create two random numbers between 1 and 6. if when the sum of two numbers are...
create two random numbers between 1 and 6. if when the sum of two numbers are added togethere their sum is less than 5 or greater than 12, output to the console: "you win". if is not, output "you lose" C++
Create a program in java that calculates area and perimeter of a square - use a...
Create a program in java that calculates area and perimeter of a square - use a class and test program to calculate the area and perimeter; assume length of square is 7 ft.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT