给定多个 int 类型,任务是编写一个 Python 程序将其转换为 index 。
例子:
Input: 19 Output: 1.900000e+01 Input: 2002 Output: 2.002000e+03 Input: 110102 Output: 1.101020e+05
方法:
- 我们将首先声明并初始化一个整数
- 然后我们将使用格式方法将数字从整数转换为 index 类型。
- 然后我们将打印转换后的值。
用法:
String {field_name:conversion} Example.format(value)
错误和异常:
ValueError:Error occurs during type conversion in this method.
更多参数可以包含在我们语法的花括号中。使用格式码语法{field_name:conversion},其中field_name指定str.format()方法的参数的索引号,conversion指的是数据类型的转换码。
例:
Python3
# Python program to convert int to exponential
# Declaring the integer number
int_number = 110102
# Converting the integer number to exponential number
exp_number = "{:e}".format(int_number)
# Printing the converted number
print("Integer Number:",int_number)
print("Exponent Number:",exp_number)
输出:
Integer Number:110102 Exponent Number:1.101020e+05
相关用法
- Python exponential转float用法及代码示例
- Python float转exponential用法及代码示例
- Python sympy.stats.Exponential()用法及代码示例
- Python numpy.random.exponential()用法及代码示例
- Java long转int用法及代码示例
- Java int转long用法及代码示例
- Python Bytes转Int用法及代码示例
- Python Float转Int用法及代码示例
- Python Int转Bytes用法及代码示例
- Python int()用法及代码示例
注:本文由纯净天空筛选整理自aditya_taparia大神的英文原创作品 Python program to convert int to exponential。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。