Remove the spaces in String python
python program to get a String and remove the spaces
Sample Input 1:
Hello World
Sample Output 1 :
HelloWorld
Program or Solution
s1=input("Enter a String:")
s2=""
for i in s1:
if(i!=" "):
s2+=i
s1=s2
print(s1)
Program Explanation
visit each location in string s1, if charcter in the location is not a space then append it in s2, finally store s2 in s1. Note: String is immutable, so you cannot modify a character directly in a orginal string.Comments
Related Programs
- length of the string in python
- find a character in a String Python
- occurences of character in string python
- lowercase to uppercase in python
- uppercase to lowercase in python
- python count vowels in string
- Compare two Strings in python
- find vowels in string python
- find substring in string pyhton
- occurences of substring in a String python
- Reverse the String in python
- string Palindronme in python
- Remove the Vowels in String Python
coming Soon
coming Soon