Skip to main content

Single Line White-space remover with Python | Remove all white-spaces of a string with a single line of Python

 What is white-space ?

Simply a white-space is a character that contains a space. when you hit your space bar on your keyboard it doesn't leave it empty but it add a Character that contains a single white- space.

Removing all white spaces in a  string

In Python we have too many ways to do that. Believe me  A For Loop is the easiest way for a beginner.
But today I use only one line of code to do the job. Let's get started.

Objectives

When we have the input "Hello World!" It must return us the string "HelloWorld!"

Code


print("".join(input("Enter the String :").split()))                                        


  • Here we get a input using Input()
  • Then  we split it into words using Split()
  • Split() Returns us a List
  • We join each and every element using join()
if you want to get items in a list joined together you can use join() 

You have to decide the connecting string before using Join() and it must be a string.
Here we want nothing to print after a list item so I used an empty String. Hope You Like it :>)




The Output


kavindu@kavindu-MS:~/project_YT/resultant$ python3 Whitespace_remover.py
Enter the String :Hello Blog Of Chamodh Readers
HelloBlogOfChamodhReaders
kavindu@kavindu-MS:~/project_YT/resultant$ 


Comments

Trending Now

Let's talk about cryptography.

Have you ever heard of cryptography?  People write their diaries every day. For many of them, their diary is one of their best friends to whom they tell their every secret. What happens when someone else finds such a diary? That would freak out the dairy's owner for sure. Also, it might put their lives in danger. Wise men always hide their diaries so no one else finds it.  But legends hide their message so that only they can read what they wrote. So even if the diary is found by someone else, they cannot know the secrets. for example, I wrote this in my diary today.   P dyval h isvn wvza hivba jyfwavnyhwof avkhf Can you understand it? This is just a very primitive level of cryptography yet powerful enough to hide what I wrote from 90% of people. I will discuss this type of cryptography in the next blog post. The human used cryptography from the very beginning to share their messages in secret and conceal their inventions. As you may know, many people tried to find a recip...

How to reset SUDO password of ubuntu on WSL [STEP BY STEP GUIDE]

Hello everyone, I just found out a super easy way to reset the password of Ubuntu installed on your windows PC. Step 1: Know your username your ubuntu username can be found by various ways. the easiest method is to run the $whoami command on Ubuntu terminal to get your username. Here my username is chamodhk Step 2: Reset the password Now close your Ubuntu terminal and open windows command prompt and run the command  wsl -d Ubuntu -u root now you have logged in as the root of the Ubuntu system and now type the following command. passwd <your_username> in this command replace the <your_username> part with your actual username. In my case, the command is passwd chamodhk That's it. Follow the on-screen instructions to create your new password. Don't forget to leave a comment :) bye.