"Delete a character: Given a string. Remove from this string all the characters @. " - Snakify python coding question on February 23, 2022 Get link Facebook X Pinterest Email Other Apps CODING QUESTIONGiven a string. Remove from this string all the characters @ SOLUTION s=str(input())print(s.replace('@',"",s.count('@'))) Input : Bilbo.Baggins@bagend.hobbiton.shire.meOutput : Bilbo.Bagginsbagend.hobbiton.shire.me