Python字符转换的代码
时间: 2024-10-11 11:00:49 浏览: 16
在Python中,你可以使用内置函数来进行字符类型的转换。以下是几个常见的例子:
1. 将整数转换为字符串(str() 函数):
```python
num = 123
str_num = str(num)
print(str_num) # 输出: "123"
```
2. 将字符串转换为小写(lower() 函数):
```python
text = "Hello, World!"
lower_text = text.lower()
print(lower_text) # 输出: "hello, world!"
```
3. 转换特定字符(ord() 和 chr() 函数用于ASCII码转换):
```python
ascii_val = ord('A')
char_from_ascii = chr(ascii_val)
print(char_from_ascii) # 输出: 'A'
```
4. 将字符串转换为大写(upper() 函数):
```python
upper_text = text.upper()
print(upper_text) # 输出: "HELLO, WORLD!"
```
5. 判断字符是否为数字(isdigit() 或 isnumeric() 函数):
```python
char = "123"
if char.isdigit():
print("字符是数字") # 输出: 字符是数字
```
阅读全文