Skip to main content
3 of 5
added 72 characters in body
Riley
  • 11.7k
  • 2
  • 23
  • 53

05AB1E, 3 bytes

vð? 

Try it online!

v # For each character... ð? # Output a space without a newline 

Other 3 byte solutions

v¶? # For each character print a newline (without adding a newline) võ, # For each character print the empty string with a newline gð× # Get the length, concatenate that many copies of space g¶× # Get the length, concatenate that many copies of newline Sð: # Split, push a space, replace each char in input with a space 
Riley
  • 11.7k
  • 2
  • 23
  • 53