Posts

 PYTHON character_name = "ravi" character_age = 56 print ( "the person name is" , character_name) print ( "The person age is" , character_age)       character_name = "ravi" character_age = 56 print ( "the person name is" + character_name) print ( "The person age is" , character_age) character_name = "arjun" character_age = 45 print ( "the person name is" + character_name) print ( "The person age is" , character_age)     print ( "ravi \n kumar" )   a = "kjsfdkj" print (a   "   ravi \y kumar" )   a = "kjsfdkj" print (a   + "   ravi \y kumar" )       IN python isupper() gives the feedback weather the result is true or false For eq: a = "kjsfdkj" print (a.isupper())   The above program gives the feedback has false. Since it is just checking weater it is true or false that’s it. a = "kjsf...