var arrLang = {
'en' : {
'home' : 'home',
'about' : 'about me',
'service' : 'services & prices',
'contact' : 'contact',
},
'ru' : {
'home' : 'главная',
'about' : 'обо мне',
'service' : 'услуги',
'contact' : 'контакты',
}
};
$(function(){
$('.translate').click(function(){
var lang = $(this).attr('id');
$('.lang').each(function(index, element){
$(this).text(arrLang[lang][$(this).attr('key')]);
});
});
});
number_of_penguins = input() # не меньше 1 и не больше 9
line_1 = ' _~_ ' * int(number_of_penguins)
line_2 = ' (o o) ' * int(number_of_penguins)
line_3 = ' / V \\ ' * int(number_of_penguins)
line_4 = '/( _ )\\ ' * int(number_of_penguins)
line_5 = ' ^^ ^^ ' * int(number_of_penguins)
print(line_1)
print(line_2)
print(line_3)
print(line_4)
print(line_5)
проверю сейчас