Ответ:
Объяснение:
print("Введите пять слов через пробел")
inp = input()
words = inp.split()
print("You have entered: {0}, {1}, {2}, {3}, {4}".format(words[0], words[1], words[2], words[3], words[4]))
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
Verified answer
Ответ:
Объяснение:
print("Введите пять слов через пробел")
inp = input()
words = inp.split()
print("You have entered: {0}, {1}, {2}, {3}, {4}".format(words[0], words[1], words[2], words[3], words[4]))