Write a simple python program to take 2 inputs from the user and declare a tuple of them. Print it twice and print starting character's of all it's contents
Answers
Answered by
1
words = tuple(input("enter 2 words: ").split())
for _ in range(2):
print(words)
for word in words:
print(word[0])
Similar questions