Hi Viewer,
Below is my 1st Python Program related to Pig Latin word
Code1:
def pig_ln(word):
first_letter=word[0]
if first_letter in 'aeiou':
pigword=word+'ay'
else:
pigword=word[1:]+first_letter+'ay'
return pigword
Hi Viewer,
Below is my 1st Python Program related to Pig Latin word
Code1:
def pig_ln(word):
first_letter=word[0]
if first_letter in 'aeiou':
pigword=word+'ay'
else:
pigword=word[1:]+first_letter+'ay'
return pigword
Hi Viewers,
I am sharing my knowledge about my work and passionate field Data Engineering Knowledge here,
So keep supporting
Thanks,
Sachin K
2 Basic Python Program : 1. Read and display user Inputs in Python Program 2. Sum And Average of float numbers using Python Program ...