Skip to main content

Posts

Showing posts from 2020

EXCEPTIONS-Strings to Integers

EXCEPTIONS:  Strings to Integers Problem Statement https://www.hackerrank.com/challenges/30-exceptions-string-to-integer/problem?h_r=email&unlock_token=4c8de9e311812f8c539f260bb3a52fc83df8b106&utm_campaign=30_days_of_code_continuous&utm_medium=email&utm_source=daily_reminder Code in Python: #!/bin/python3 import   sys S  =  input () . strip () try :      print ( int ( S )) except :      print ( "Bad String" ) ______________________________________________________________________________ Please Like, Comment and Share!😉