Python Evaluation

Sort by

recency

|

244 Discussions

|

  • + 0 comments

    eval(input()) is the solution of this problem

  • + 0 comments

    Here is HackerRank Python Evaluation in Python solution - https://programmingoneonone.com/hackerrank-python-evaluation-problem-solution.html

  • + 0 comments

    can anybody help me to practise python from basics. iam a fresher

  • + 0 comments
    #add comments so that the solution is not interpreted as a spam message
    var = input()
    eval(var)
    
  • + 0 comments
    var = input()
    r = eval(var[6:-1])
    print(r)