Create 5 - Pig Latin.py

This commit is contained in:
Lukas Baumann 2021-02-18 18:32:38 +01:00 committed by GitHub
parent 9ce9ac3e31
commit 5a4050b808
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
07/a/5 - Pig Latin.py Normal file
View File

@ -0,0 +1,2 @@
string = input()
print(string[1:] + string[0] + "ay")