question archive Assign decoded_tweet with user_tweet, replacing any occurrence of 'TTYL' with 'talk to you later'

Assign decoded_tweet with user_tweet, replacing any occurrence of 'TTYL' with 'talk to you later'

Subject:Computer SciencePrice:2.87 Bought7

Assign decoded_tweet with user_tweet, replacing any occurrence of 'TTYL' with 'talk to you later'.

Sample output with input: 'Gotta go. I will TTYL.'

Gotta go. I will talk to you later.

code given:

user_tweet = input()

decoded_tweet = ''' Your solution goes here '''
print(decoded_tweet)

pur-new-sol

Purchase A New Answer

Custom new solution created by our subject matter experts

GET A QUOTE

Answer Preview

Answer:

INPUT : Gotta go. I will TTYL.

OUTPUT:

PFA