Answers for "add quotes to string python"

6

how to remove spaces in string in python

sentence = '       hello  apple         '
sentence.strip()
>>> 'hello  apple'
Posted by: Guest on May-22-2020
5

python put quotes in string

# any character with a "" before it is ignored as syntax and placed in the string

print(""This should work for you" I said")
Posted by: Guest on June-04-2020
0

remove double quotes from string kotlin

String x=""abcd";
String z=x.replace(""", "");
System.out.println(z);
Posted by: Guest on May-16-2020

Code answers related to "add quotes to string python"

Python Answers by Framework

Browse Popular Code Answers by Language