employer cover photo
employer logo

Question d’entretien chez VMware

Given a string replace all the white spaces by "%20".

Réponses aux questions d'entretien

Utilisateur anonyme

10 mai 2015

Coded that easily.

Utilisateur anonyme

24 janv. 2017

x = "Hi, How are you ?" def change (x): y = x.split(" ") return "%20".join(y) change(x)