Incedo interview question

python program to find false string of {}sfr56{{{}}}}

Interview Answer

Anonymous

Aug 24, 2020

>>> str = "{}sfr56{{{}}}}" >>> str.isidentifier() False >>> str1 = "hello" >>> str1.isidentifier()