# Python CodeRecipe|isalnum()の使い方

Home String Methods

# isalnum()の例1

Check if all the characters in the text are alphanumeric:

    txt = "Company12"x = txt.isalnum()
print(x)

# isalnum()の定義及び使い方

isalnum()関数は、 文字は英数字で、アルファベット文字(a-z)と数字(0~9)を意味します。

# isalnum()の例2


## isalnum()の構文

```python
string.isalnum()

# isalnum()の引数

パラメータがありません。

# Example

Check if all the characters in the text is alphanumeric:

    txt = "Company 12"x = txt.isalnum()
print(x)

Home String Methods