Which method to check if string index is queal to character.

Marco Sulla Marco.Sulla.Python at gmail.com
Mon Dec 28 12:46:19 EST 2020


On Mon, 28 Dec 2020 at 17:37, Bischoop <Bischoop at vimart.net> wrote:
>
> I'd like to check if there's "@" in a string and wondering if any method
> is better/safer than others. I was told on one occasion that I should
> use is than ==, so how would be on this example.
>
> s = 'this at mail.is'

You could do simply

if "@" in s:

but probably what you really want is a regular expression.


More information about the Python-list mailing list