126. String Isdigit and Isidentifier Method in Python with Example Code || Python String Methods-8

Pubblicato il: 01 ottobre 2022
sul canale di: Bhavatavi
9
0

Code:
s='234235'
print(s.isdigit())

s='abc 436547'
print(s.isdigit())

s='\u00BD'
print(s.isdigit())

#isidentifier()
str='Python'
print(str.isidentifier())


str='Pyth on'
print(str.isidentifier())


str='22Python'
print(str.isidentifier())


str=''
print(str.isidentifier())

str='root33'
if str.isidentifier()==True:
print(str,'is a valid identifier')

else:
print(str,'is not a valid identifier')

str='33root'
if str.isidentifier()==True:
print(str,'is a valid identifier')

else:
print(str,'is not a valid identifier')


In questa pagina del sito puoi guardare il video online 126. String Isdigit and Isidentifier Method in Python with Example Code || Python String Methods-8 della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Bhavatavi 01 ottobre 2022, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 9 volte e gli è piaciuto 0 spettatori. Buona visione!