question archive 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)
Purchased 7 times