在五分钟内学习使用Python进行类型转换

by PALAKOLLU SRI MANIKANTA

通过PALAKOLLU SRI MANIKANTA

在五分钟内学习使用Python进行类型转换 (Learn typecasting in Python in five minutes)

以非常详尽的方式介绍了Python中的类型转换和类型转换的速成课程 (A crash course on Typecasting and Type conversion in Python in a very non-verbose manner)

铸件 (TypeCasting)

The process of converting one data type to another data type is called Typecasting or Type Coercion or Type Conversion.

将一种数据类型转换为另一种数据类型的过程称为TypecastingType CoercionType Conversion

The topics that I’ll be focusing on in this article are:

我将在本文中重点讨论的主题是:

  1. Implicit Type Conversion

    隐式类型转换
  2. Explicit Type Conversion

    显式类型转换
  3. Advantages

    优点
  4. Disadvantages

    缺点

隐式类型转换 (Implicit Type Conversion)

When the type conversion is performed automatically by the interpreter without the programmer’s intervention, that type of conversion is referred to as implicit type conversion.

当解释器自动执行类型转换而无需程序员干预时,该类型的转换称为隐式类型转换

示例程序: (Example Program:)

myInt = 143     # Integer value.myFloat = 1.43  # Float value.
myResult = myInt + myFloat   # Sum result
print("datatype of myInt:",type(myInt))print("datatype of myFloat:",type(myFloat))
print("Value of myResult:",myResult)print("datatype of myResult:",type(myResult))

输出: (Output:)

The output for the above program will be:

上面程序的输出将是:

datatype of myInt: <class 'int'>datatype of myFloat: <class 'float'>Value of myResult: 144.43datatype of myResult: <class 'float'>

In the above program,

在上面的程序中,

  • We add two variables myInt and myFloat, storing the value in myResult.

    我们添加两个变量myInt和myFloat,将值存储在myResult中。
  • We will look at the data type of all three objects respectively.

    我们将分别查看所有三个对象的数据类型。
  • In the output, we can see the datatype of myInt is an integer, the datatype of myFloat is a float.

    在输出中,我们可以看到myInt的数据类型是integer ,myFloat的数据类型是float

  • Also, we can see the myFloat has float data type because Python converts smaller data type to larger data type to avoid the loss of data.

    此外,我们可以看到myFloat具有float数据类型,因为Python会将较小的数据类型转换为较大的数据类型,以避免数据丢失。

This type of conversion is called Implicit Type conversion (or) UpCasting.

这种类型的转换称为隐式类型转换 (或) UpCasting

显式类型转换 (Explicit Type Conversion)

In Explicit Type Conversion, users convert the data type of an object to the required data type. We use predefined in-built functions like:

在“显式类型转换”中,用户将对象的数据类型转换为所需的数据类型。 我们使用预定义的内置函数,例如:

  1. int()

    int()
  2. float()

    浮动()
  3. complex()

    复杂()
  4. bool()

    bool()
  5. str()

    str()

The syntax for explicit type conversion is:

显式类型转换的语法为:

(required_datatype)(expression)

This type of conversion is called Explicit Type conversion (or) DownCasting.

这种类型的转换称为显式 类型转换 (或DownCasting)

整数转换 (Int Conversion)

We can use this function to convert values from other types to int.

我们可以使用此函数将其他类型的值转换为int。

For example:

例如:

>>> int(123.654)123
>>>int(False)0
>>> int("10")10
>>> int("10.5")ValueError: invalid literal for int() with base 10: '10.5'
>>> int("ten")ValueError: invalid literal for int() with base 10: 'ten'
>>> int("0B1111")ValueError: invalid literal for int() with base 10: '0B1111'
>>> int(10+3j)TypeError: can't convert complex to int

注意: (Note:)

  1. You can’t convert complex datatype to int

    您不能将复杂的数据类型转换为int
  2. If you want to convert string type to int type, the string literal must contain the value in Base-10

    如果要将字符串类型转换为int类型,则字符串文字必须包含Base-10中的值

浮点转换 (Float Conversion)

This function is used to convert any data type to a floating point number.

此函数用于将任何数据类型转换为浮点数。

For example:

例如:

>>> float(10) 10.0
>>> float(True)1.0
>>> float(False)0.0
>>> float("10")10.0
>>> float("10.5")10.5
>>> float("ten")ValueError: could not convert string to float: 'ten'
>>> float(10+5j)TypeError: can't convert complex to float
>>> float("0B1111")ValueError: could not convert string to float: '0B1111'

注意: (Note:)

  1. You can convert complex type to float type value.

    您可以将复杂类型转换为浮点类型值。
  2. If you want to convert string type to float type, the string literal must contain the value in base-10.

    如果要将字符串类型转换为浮点类型,则字符串文字必须包含以10为底的值。

复合转换 (Complex Conversion)

This function is used to convert real numbers to a complex (real, imaginary) number.

该功能 用于将实数转换为复数(实数,虚数)。

表格1:复数(x) (Form 1: complex (x))

You can use this function to convert a single value to a complex number with real part x and imaginary part 0.

您可以使用此函数将单个值转换为具有实部x和虚部0的复数。

For example:

例如:

>>> complex(10)10+0j
>>> complex(10.5)10.5+0j
>>> complex(True)1+0j
>>> complex(False)0+0j
>>> complex("10")10+0j
>>> complex("10.5")10.5+0j
>>> complex("ten")ValueError: complex() arg is a malformed string

形式2:复数(x,y) (Form 2: complex (x, y))

If you want to convert X and Y into complex number such that X will be real part and Y will be imaginary part.

如果要将X和Y转换为复数,使得X将是实部而Y将是虚部。

For example:

例如:

>>> complex(10,-2)10-2j
>>> complex(True, False)1+0j

布尔转换 (Boolean Conversion)

This function is used to convert any data type to boolean data type easily. It is the most flexible data type in Python.

此函数用于轻松地将任何数据类型转换为布尔数据类型。 它是Python中最灵活的数据类型。

For example:

例如:

>>> bool(0)False
>>> bool(1)True
>>> bool(10)True
>>> bool(0.13332)True
>>> bool(0.0)False
>>> bool(10+6j)True
>>> bool(0+15j)True
>>> bool(0+0j)False
>>> bool("Apple")True
>>> bool("")False
Note: With the help of bool function, you can convert any type of datatype into boolean and the output will be - For all values it will produce True except 0, 0+0j and for an Empty String.
注意:借助bool函数,您可以将任何类型的数据类型转换为布尔值,并且输出将为-对于所有值,除0、0 + 0j和空字符串外,它将生成True。

字符串转换 (String Conversion)

This function is used to convert any type into a string type.

此函数用于将任何类型转换为字符串类型。

For example:

例如:

>>> str(10)'10'
>>> str(10.5)'10.5'
>>> str(True)'True'
>>> str(False)'False'
>>> str(10+5j)'10+5j'
>>> str(False)'False'

示例程序: (Example Program:)

integer_number = 123  # Intstring_number = "456" # String
print("Data type of integer_number:",type(integer_number))print("Data type of num_str before Type Casting:",type(num_str))
string_number = int(string_number)print("Data type of string_number after Type Casting:",type(string_number))
number_sum = integer_number + string_number
print("Sum of integer_number and num_str:",number_sum)print("Data type of the sum:",type(number_sum))

输出: (Output:)

When we run the above program the output will be:

当我们运行上面的程序时,输出将是:

Data type of integer_number: <class 'int'>Data type of num_str before Type Casting: <class 'str'>Data type of string_number after Type Casting: <class 'int'>Sum of integer_number and num_str: 579Data type of the sum: <class 'int'>

In the above program,

在上面的程序中

  • We add string_number and integer_number variable.

    我们添加string_number和integer_number变量。
  • We converted string_number from string(higher) to integer(lower) type using int() function to perform addition.

    我们使用int()函数将string_number从string(higher)转换为integer(lower)类型以执行加法。

  • After converting string_number to an integer value Python adds these two variables.

    将string_number转换为整数值后,Python会添加这两个变量。
  • We got the number_sum value and data type to be an integer.

    我们获得了number_sum值和数据类型为整数。

类型转换的优点 (Advantages Of Typecasting)

  1. More convenient to use

    使用更方便

类型转换的缺点 (Disadvantages Of Typecasting)

  1. More complex type system

    更复杂的类型系统
  2. Source of bugs due to unexpected casts

    由于意外的强制转换导致的错误来源

I covered pretty much everything that is required to perform any type of typecasting operation in Python3.

我介绍了在Python3中执行任何类型的类型转换操作所需的几乎所有内容。

Hope this helped you learn about Python Typecasting in a quick and easy way.

希望这可以帮助您以快速简便的方式了解Python类型转换。

If you liked this article please click on the clap and leave me your valuable feedback.

如果您喜欢本文,请单击拍手,并留下宝贵的反馈给我。

翻译自: https://www.freecodecamp.org/news/learn-typecasting-in-python-in-five-minutes-90d42c439743/

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391995.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Ajax post HTML 405,Web API Ajax POST向返回 405方法不允许_jquery_开发99编程知识库

因此&#xff0c;我有一個像這樣的jquery ajax請求&#xff1a;function createLokiAccount(someurl) {var d {"Jurisdiction":17}$.ajax({type:"POST",url:"http://myserver:111/Api/V1/Customers/CreateCustomer/",data: JSON.stringify(d),c…

leetcode 480. 滑动窗口中位数(堆+滑动窗口)

中位数是有序序列最中间的那个数。如果序列的大小是偶数&#xff0c;则没有最中间的数&#xff1b;此时中位数是最中间的两个数的平均数。 例如&#xff1a; [2,3,4]&#xff0c;中位数是 3 [2,3]&#xff0c;中位数是 (2 3) / 2 2.5 给你一个数组 nums&#xff0c;有一个大…

1.0 Hadoop的介绍、搭建、环境

HADOOP背景介绍 1.1 Hadoop产生背景 HADOOP最早起源于Nutch。Nutch的设计目标是构建一个大型的全网搜索引擎&#xff0c;包括网页抓取、索引、查询等功能&#xff0c;但随着抓取网页数量的增加&#xff0c;遇到了严重的可扩展性问题——如何解决数十亿网页的存储和索引问题。20…

如何实现多维智能监控?--AI运维的实践探索【一】

作者丨吴树生&#xff1a;腾讯高级工程师&#xff0c;负责SNG大数据监控平台建设。近十年监控系统开发经验&#xff0c;具有构建基于大数据平台的海量高可用分布式监控系统研发经验。 导语&#xff1a;监控数据多维化后&#xff0c;带来新的应用场景。SNG的哈勃多维监控平台在完…

.Net Web开发技术栈

有很多朋友有的因为兴趣&#xff0c;有的因为生计而走向了.Net中&#xff0c;有很多朋友想学&#xff0c;但是又不知道怎么学&#xff0c;学什么&#xff0c;怎么系统的学&#xff0c;为此我以我微薄之力总结归纳写了一篇.Net web开发技术栈&#xff0c;以此帮助那些想学&#…

使用Python和MetaTrader在5分钟内开始构建您的交易策略

In one of my last posts, I showed how to create graphics using the Plotly library. To do this, we import data from MetaTrader in a ‘raw’ way without automation. Today, we will learn how to automate this process and plot a heatmap graph of the correlation…

卷积神经网络 手势识别_如何构建识别手语手势的卷积神经网络

卷积神经网络 手势识别by Vagdevi Kommineni通过瓦格德维科米尼(Vagdevi Kommineni) 如何构建识别手语手势的卷积神经网络 (How to build a convolutional neural network that recognizes sign language gestures) Sign language has been a major boon for people who are h…

spring—第一个spring程序

1.导入依赖 <dependency><groupId>org.springframework</groupId><artifactId>spring-context</artifactId><version>5.0.9.RELEASE</version></dependency>2.写一个接口和实现 public interface dao {public void save(); }…

请对比html与css的异同,css2与css3的区别是什么?

css主要有三个版本&#xff0c;分别是css1、css2、css3。css2使用的比较多&#xff0c;因为css1的属性比较少&#xff0c;而css3有一些老式浏览器并不支持&#xff0c;所以大家在开发的时候主要还是使用css2。CSS1提供有关字体、颜色、位置和文本属性的基本信息&#xff0c;该版…

基础 之 数组

shell中的数组 array (1 2 3) array ([1]ins1 [2]ins2 [3]ins3)array ($(命令)) # 三种定义数组&#xff0c;直接定义&#xff0c;键值对&#xff0c;直接用命令做数组的值。${array[*]}${array[]}${array[0]} # 输出数组中的0位置的值&#xff0c;*和…

Linux_异常_08_本机无法访问虚拟机web等工程

这是因为防火墙的原因&#xff0c;把响应端口开启就行了。 # Firewall configuration written by system-config-firewall # Manual customization of this file is not recommended. *filter :INPUT ACCEPT [0:0] :FORWARD ACCEPT [0:0] :OUTPUT ACCEPT [0:0] -A INPUT -m st…

Building a WAMP Dev Environment [3/4] - Installing and Configuring PHP

Moved to http://blog.tangcs.com/2008/10/27/wamp-installing-configuring-php/转载于:https://www.cnblogs.com/WarrenTang/archive/2008/10/27/1320069.html

ipywidgets_未来价值和Ipywidgets

ipywidgetsHow to use Ipywidgets to visualize future value with different interest rates.如何使用Ipywidgets可视化不同利率下的未来价值。 There are some calculations that even being easy becoming better with a visualization of his terms. Moreover, the sooner…

2019 css 框架_宣布CSS 2019调查状态

2019 css 框架by Sacha Greif由Sacha Greif 宣布#StateOfCSS 2019调查 (Announcing the #StateOfCSS 2019 Survey) 了解JavaScript状况之后&#xff0c;帮助我们确定最新CSS趋势 (After the State of JavaScript, help us identify the latest CSS trends) I’ve been using C…

计算机主机后面辐射大,电脑的背面辐射大吗

众所周知&#xff0c;电子产品的辐射都比较大&#xff0c;而电脑是非常常见的电子产品&#xff0c;它也存在着一定的辐射&#xff0c;那么电脑的背面辐射大吗?下面就一起随佰佰安全网小编来了解一下吧。有资料显示&#xff0c;电脑后面的辐射比前面大&#xff0c;长期近距离在…

spring— Bean标签scope配置和生命周期配置

scope配置 singleton 默认值&#xff0c;单例的prototype 多例的request WEB 项目中&#xff0c;Spring 创建一个 Bean的对象&#xff0c;将对象存入到 request 域中session WEB 项目中&#xff0c;Spring 创建一个 Bean 的对象&#xff0c;将对象存入session 域中global sess…

装饰器3--装饰器作用原理

多思考&#xff0c;多记忆&#xff01;&#xff01;&#xff01; 转载于:https://www.cnblogs.com/momo8238/p/7217345.html

用folium模块画地理图_使用Folium表示您的地理空间数据

用folium模块画地理图As a part of the Data Science community, Geospatial data is one of the most crucial kinds of data to work with. The applications are as simple as ‘Where’s my food delivery order right now?’ and as complex as ‘What is the most optim…

Windows下安装Python模块时环境配置

“Win R”打开cmd终端&#xff0c;如果直接在里面使用pip命令的时候&#xff0c;要么出现“syntax invalid”&#xff0c;要么出现&#xff1a; pip is not recognized as an internal or external command, operable program or batch file. 此时需要将C:\Python27\Scripts添加…

播客2008

http://blog.tangcs.com/2008/12/29/year-2008/转载于:https://www.cnblogs.com/WarrenTang/articles/1364465.html