欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

函数strip 和eval 函数

程序员文章站 2023-12-21 16:07:22
...

 如下面的例子: strip() :作用是去除左右两边的空格

 

和 eval()函数:将字符串变为整数

>>> import os
>>> a="   23sd  "
>>> a
'   23sd  '
>>> a.strip()
'23sd'
>>> eval(-2)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: eval() arg 1 must be a string, bytes or code object
>>> eval('-2')
-2
>>> b='2'
>>> type(b)
<class 'str'>
>>> type(eval(b))
<class 'int'>
>>> 

 

相关标签: strip eval

上一篇:

下一篇: