+ 8
I am having problem with the pig latin challenge any help
14 Respuestas
+ 16
Kenephil one request to you plz from next time post your attempt here on discuss forum also.
Then this type of conflict may not be occur.
Thank you
+ 6
sen = input()
sen_list = sen.split(" ")
result =""
for word in sen_list:
leng = len(word)
s = word[1:leng]+word[0]+"ay"
print(s, end=" ")
+ 5
Thanks bro
+ 4
Kenephil Could you save the code in the Code Playground and share a link to it?
+ 3
Flash it didnt work for some reason
+ 3
Ok
+ 3
I posted my attempt check my profile
+ 3
phrase = input().split(' ')
result = []
for i in phrase:
i = i[1:] + i[0] + 'ay'
result.append(i)
print(' '.join(result))
+ 3
Ok thanks bro
+ 2
Let me show you my code