26
loading...
This website collects cookies to deliver better user experience
first_name = "aya"
print(first_name.capitalize()) # Aya
print('AyaBouchiha'.isalpha()) # True
print('Aya Bouchiha'.isalpha()) # False
print('Aya-Bouchiha'.isalpha()) # False
print('AyaBouchiha 1'.isalpha()) # False
print('Aya Bouchiha!'.isalpha()) # False
print('100'.isdigit()) # True
print('12a'.isdigit()) # False
print('100 000'.isdigit()) # False
print('+212-6000-00000'.isdigit()) # False
print('12a'.isdigit()) # False
print('3\u00B2') # 3²
print('3\u00B2'.isdigit()) # True
print('2021'.isalnum()) # True
print('30kviews'.isalnum()) # True
print('+212600000000'.isalnum()) # False
print('dev.to'.isalnum()) # False
print('[email protected]'.isalnum()) # False
print('Aya Bouchiha'.isalnum()) # False
print(' Aya Bouchiha '.strip()) # Aya Bouchiha
print(' +212612345678 '.strip(' +')) # 212612345678
print('Hi, I\'m Aya Bouchiha'.strip('Hi, ')) # I'm Aya Bouchiha