python打印一个变量的属性
时间: 2023-08-04 10:25:39 浏览: 106
python 打印对象的所有属性值的方法
可以使用内置函数`dir()`来获取一个对象的所有属性和方法,例如:
```python
x = 'hello'
print(dir(x))
```
输出结果为:
```
['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'casefold', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill']
```
其中这些属性和方法的具体含义可以参考官方文档。如果想要打印某个特定属性的值,可以使用`getattr()`函数,例如:
```python
import math
print(getattr(math, 'pi'))
```
输出结果为:
```
3.141592653589793
```
阅读全文