a=’45’,将变量a转换为一个整型,用以下哪个函数
A: int(a)
B: float(a)
C: str (a)
D: type(a)
A: int(a)
B: float(a)
C: str (a)
D: type(a)
举一反三
- 智慧职教: a=’45’,将变量a转换为一个整型,用以下哪个函数
- 哪个函数能把 input() 函数获取的输入转换为 浮点数? A: str() 函数 B: int() 函数 C: float() 函数 D: type() 函数
- 以下哪个函数可以将整型数据转换为浮点数?( ) A: int(x [,base]) B: long(x [,base] ) C: float(x)
- Python语言中,将字符串转换为一个浮点数的函数是()。 A: int( ) B: str( ) C: float( ) D: chr( )
- Python使用______函数将整数转换为浮点数 A: float B: int C: eval D: str