What's the problem with my code, I used the .split () function to separate the string when it finds'; ', after separating I wanted to join to come back putting spaces so I used the .join (), however I did not see effects see:
#Irá separar cada palavra quando encontrar o delimitador ';'
reg = str(input('Nome; endereço; telefone: '))
nome, endereco, telefone = reg.split(';')
print('{} {} {} '.format(nome, endereco, telefone))
' '.join(reg)
print(reg)
'''
Tentei fazer dessa forma também:
' '.join(nome, endereco, telefone)
print(reg)
n deu.
'''