14 lines
275 B
Python
14 lines
275 B
Python
def main():
|
|
list1 = ["M", "na", "i", "Ke"]
|
|
list2 = ["y", "me", "s", "lly"]
|
|
|
|
list3 = [f'{list1[i]}{list2[i]}' for i in range(len(list1))]
|
|
|
|
|
|
print('==Exercise 5==')
|
|
print(list3)
|
|
print('==End Of Ex5==')
|
|
return 0
|
|
|
|
if __name__ == '__main__':
|
|
main() |