Answers for "how strip space python"

3

python remove spaces

string=' t e s t ' 
print(string.replace(' ',''))
Posted by: Guest on October-14-2020
4

strip whitespace python

>>> s.strip()
'Hello  World   From Pankaj tnrtHi There'
Posted by: Guest on February-19-2020
-1

remove space in print python

age = 20
print("My age is ", age, '.', sep='')
Posted by: Guest on June-17-2021

Python Answers by Framework

Browse Popular Code Answers by Language