# ways to dfefine string in python string = "String" string = str(string) # Can Add strings s1 = "Str" s2 = "ing" s = s1 + s2 # "String"