import urllib.request
import json
def yatrl(word):
    link_one = 'https://t...content-available-to-author-only...x.net/api/v1.5/tr.json/translate?key='
    link_two = 'trnsl.1.1.20150103T143421Z.56fe13b7247ddb54.19bc22fe11e70a50d34cf3a3450c7287d64aa3e5&text='
    link_three = '&lang=en-ru&[format=plain]'
    return ''.join([i+', ' for i in json.loads(urllib.request.urlopen(link_one+link_two+word+link_three).read().decode()).get('text')]).strip(', ')
while True:
    my_word = input('Введите ваше слово здесь: ')
    print(yatrl(my_word))