Contact: aviboots(AT)netvision.net.il
40,898 questions
53,330 answers
573 users
s = '"python"' new_string = s.replace('"', '') print("{}".format(s)) print("{}".format(new_string)) ''' run: "python" python '''
s = '"python"' new_string = s.strip('"') print("{}".format(s)) print("{}".format(new_string)) ''' run: "python" python '''
s = '"python"' new_string = eval(s) print("{}".format(s)) print("{}".format(new_string)) ''' run: "python" python '''