Advertisement
Guest User

Remove_spaces

a guest
Aug 25th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. str1 = “Some words”
  2. new_str = “”
  3.  
  4. for char in str1:
  5.     if char != “ “:
  6.         new_str += char
  7.  
  8. print(new_str)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement