Python Basics Exercises
Exercises: Python Basics Go to editor!!! Print a string print "I am getting started" Arithmetic Operators expression=2+3*6/2 print expression Get user input fname = raw_input("Input your First Name : ") #use Input()in python 3.X lname = raw_input("Input your Last Name : ") print ("Hello " + lname + " " + fname) String functions str = "this is string example....wow!!!"; print str.capitalize() print str.upper() print str.lower() print len(str) print str.r...