Input() in python HackerRank Solution

Hello Programmers, In this post, you will know how to solve the Input() in python HackerRank Solution. This problem is a part of the HackerRank Python Programming Series.

Ezoicreport this adInput() in python HackerRank Solution
Input() in python HackerRank Solutions

One more thing to add, don’t directly look for the solutions, first try to solve the problems of Hackerrank by yourself. If you find any difficulty after trying several times, then you can look for solutions.

Input() in python HackerRank Solution

Ezoicreport this adProblem

This challenge is only forPython 2.input()in Python 2, the expression input() is equivalent to eval(raw _input(prompt)).
code :

>>> input()
1+2
3
>>> company = 'HackerRank'
>>> website = 'www.hackerrank.com'
>>> input()
'The company name: '+company+' and website: '+website
'The company name: HackerRank and website: www.hackerrank.com'

Task :

You are given a polynomial P of a single indeterminate (or variable), x.
You are also given the values of x and k. Your task is to verify if P(x) == k.

Constraints :

All coefficients of polynomial P are integers.
x and y are also integers.

Input Format :

The first line contains the space separated values of x and k.
The second line contains the polynomial P.

Output Format :

Print True if P(x)==k. Otherwise, print False.

Sample Input :

1 4
x**3 + x**2 + x + 1

Sample Output :

True

Explanation :

P(1) = 1^3 + 1^2 + 1 + 1 = 4 = k
Hence, the output is True.

Input() in python HackerRank Solutions

if __name__ == "__main__":
    x, k = map(int, input().strip().split())
    string = input().strip()
    if eval(string) == k:
        print(True)
    else:
        print(False)

Disclaimer: The above Problem (Input() in python) is generated by Hackerrank but the Solution is Provided by BrokenProgrammers. This tutorial is only for Educational and Learning purposes.

Next: Python Evaluation HackerRank Solution

Sharing Is Caring

Leave a Comment

Ezoicreport this ad