NPTEL The Joy Of Computing Using Python Week 5 Programming Assignment 2023 | NPTEL

The Joy of Computing using Python Week 5 - Programming Assignment 1 | NPTEL | Answer with Explanation

NPTEL The Joy Of Computing Using Python Week 5 Programming Assignment 2023  NPTEL

The Joy Of Computing Using Python Week 5: Programming Assignment 1

write a Python program that finds the Greatest Common Divisor (GCD) of two numbers. Your program should take two input numbers from the user, and use a function named ‘gcd’ to find the GCD of those two numbers. Your program should then print out the GCD of the two numbers as the output.

Answer
from math import gcd

x = int(input())
y = int(input())

print(gcd(x, y), end="")

The Joy Of Computing Using Python Week 5: Programming Assignment 2

Write a Python program that calculates the dot product of two lists containing the same number of elements. The program should take two lists of integers as input from the user, and then call a function named dot_product to find the dot product of the two lists. The dot_product function should take two lists a and b as input, and should return the dot product of those two lists.

Your program should first prompt the user to enter the two lists of integers, which should be entered as strings separated by spaces. Your program should then convert the input strings into lists of integers. Your program should then call the dot_product function with the two lists as arguments, and store the resulting dot product in a variable named result. Finally, your program should print out the dot product of the two lists as the output.

You can assume that the two input lists will always contain the same number of elements. Your program should output an error message and exit gracefully if the two lists have different lengths.

In your implementation, you should define the dot_product function using a loop to calculate the dot product of the two input lists.

Answer
a=[int(i) for i in input().split()]
b=[int(i) for i in input().split()]

def dot_product(m, n ):
  return(sum([m[i]*n[i]  for i in range(len(m))]))

print(dot_product(a,b),end="")

The Joy Of Computing Using Python Week 5: Programming Assignment 3

Write a Python function that takes a string s as input and returns the length of the largest streak of 0’s in the string. For example, if the input string is “10001000110000000001”, the function should return 6.

Input : The input string s is guaranteed to contain only 0s and 1s.

Output : The function should return an integer, representing the length of the largest streak of 0s in the input string.Your program should also print the result.

Sample output :
largest_zero_streak(“10101010”) => 1
largest_zero_streak(“10000010001”) => 5
largest_zero_streak(“1111”) => 0
largest_zero_streak(“0000”) => 4
largest_zero_streak(“00000000001111111111”) => 10

Answer
    
def largest_zero_streak(input_string):
    return(len(max(input_string.split('1'))))
str=input()
print(largest_zero_streak(str),end="")

Disclaimer:
" This page contains Programming Assignment related to The Joy of Computing using Python . The answers to these questions are provided for educational and informational purposes only.These answers are provided only for the purpose to help students to take references. This website does not claim any surety of 100% correct answers. So, this website urges you to complete your assignment yourself."

The Joy of Computing using Python Week 5,NPTEL, Week 5: Programming Assignment 1,2 and 3 [Jan 2023],noc23_cs20

Post a Comment

0 Comments