I am having problem with the pig latin challenge any help | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 8

I am having problem with the pig latin challenge any help

Python

23rd Jun 2020, 12:14 PM
Kenephil
Kenephil - avatar
10 Answers
+ 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
25th Jun 2020, 5:51 AM
Lamya😉
Lamya😉 - avatar
+ 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=" ")
23rd Jun 2020, 12:46 PM
Naola
Naola - avatar
+ 5
Thanks bro
23rd Jun 2020, 12:53 PM
Kenephil
Kenephil - avatar
+ 4
Kenephil Could you save the code in the Code Playground and share a link to it?
23rd Jun 2020, 1:04 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar
+ 3
Flash it didnt work for some reason
23rd Jun 2020, 1:02 PM
Kenephil
Kenephil - avatar
+ 3
Ok
23rd Jun 2020, 1:40 PM
Kenephil
Kenephil - avatar
+ 3
I posted my attempt check my profile
23rd Jun 2020, 4:46 PM
Kenephil
Kenephil - avatar
+ 3
phrase = input().split(' ') result = [] for i in phrase: i = i[1:] + i[0] + 'ay' result.append(i) print(' '.join(result))
24th Jun 2020, 7:51 PM
Yurii Ostapenko
Yurii Ostapenko - avatar
+ 3
Ok thanks bro
24th Jun 2020, 7:52 PM
Kenephil
Kenephil - avatar
+ 2
Let me show you my code
23rd Jun 2020, 12:21 PM
Kenephil
Kenephil - avatar