0
Question
Anyone who knows how to solve the "pig latin" challenge(coach challenge) in python
2 Réponses
+ 2
You can split the string into list then make some changes like the following example below using list slicing to each word in the list
a='nevermind'
b=a[1:]+a[:1]+"ay"
print(b)
0
Thanx bro