Computer Science, asked by ajeetniccom, 10 months ago

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 jai696
1

\huge\red{\mid{\fbox{\tt{Using\: Python\: 3}}\mid}}

words = tuple(input("enter 2 words: ").split())

for _ in range(2):

print(words)

for word in words:

print(word[0])

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions