Python:算术、数据类型和条件逻辑的基本概念
来源:dev.to
时间:2024-11-15 13:16:03 263浏览 收藏
“纵有疾风来,人生不言弃”,这句话送给正在学习文章的朋友们,也希望在阅读本文《Python:算术、数据类型和条件逻辑的基本概念》后,能够真的帮助到大家。我也会在后续的文章中,陆续更新文章相关的技术文章,有好的建议欢迎大家在评论留言,非常感谢!
如果您是 python 新手,了解基本操作、数据类型和条件逻辑至关重要。让我们回顾一下一些基本主题。我们将通过示例探讨每个主题。
第 1 章:算术运算符
python提供了多种运算符,可以轻松执行数学运算。以下是最常见运算符的快速概述:
syntax | action | example | output |
---|---|---|---|
* | multiply | 4 * 10 | 40 |
+ | addition | 7 + 9 | 16 |
- | subtract | 23 - 4 | 19 |
/ | division | 27 / 3 | 9 |
** | power | 3 ** 2 | 9 |
% | modulo | 7 % 4 | 3 |
这些运算符可帮助您处理代码中的数字。以下是一些示例:
# multiplication result = 4 * 10 print(result) # output: 40 # addition total = 7 + 9 print(total) # output: 16 # power squared = 3 ** 2 print(squared) # output: 9
您还可以使用这些运算符为变量赋值:
# define total spend amount total_spend = 3150.96 print(total_spend) # output: 3150.96
第 2 章:数据类型和集合
在 python 中,您有多种存储数据的方法,每种方法都适合不同类型的任务。
-
字符串:用于文本。您可以使用单引号或双引号定义字符串。
# defining a string customer_name = 'george boorman' print(customer_name) # double quotes also work customer_name = "george boorman"
-
列表:列表是可以包含多个值的有序集合。
# creating a list prices = [10, 20, 30, 15, 25, 35] # accessing the first item print(prices[0]) # output: 10
-
字典:字典存储键值对,允许您根据键查找值。
# creating a dictionary products_dict = { "ag32": 10, "ht91": 20, "pl65": 30, "os31": 15, "kb07": 25, "tr48": 35 } # accessing a value by key print(products_dict["ag32"]) # output: 10
-
集合和元组:
- 集合:独特元素的集合。
- tuple:不可变列表,意味着创建后无法更改。
# creating a set prices_set = {10, 20, 30, 15, 25, 35} # creating a tuple prices_tuple = (10, 20, 30, 15, 25, 35)
第 3 章:条件关键字
python 包含几个用于评估条件的关键字,这对于代码中的决策至关重要。
keyword | function |
---|---|
and | evaluate if multiple conditions are true |
or | evaluate if one or more conditions are true |
in | check if a value exists in a data structure |
not | evaluate if a value is not in a data structure |
让我们看一些示例来了解这些关键字的实际作用:
- 使用和:
age = 25 income = 50000 # check if both conditions are true if age > 20 and income > 30000: print("eligible for loan")
- 使用或:
day = "sunday" weather = "sunny" # check if either condition is true if day == "saturday" or weather == "sunny": print("let's go to the park!")
- 用于:
fruits = ["apple", "banana", "cherry"] # check if a value is in the list if "apple" in fruits: print("apple is available.")
- 不使用:
vegetables = ["carrot", "potato", "spinach"] # Check if a value is not in the list if "broccoli" not in vegetables: print("Broccoli is not in the list.")
总结
本概述涵盖了 python 中算术运算、各种数据类型和条件关键字的基础知识。这些基本概念将帮助您构建更复杂的程序。
本篇关于《Python:算术、数据类型和条件逻辑的基本概念》的介绍就到此结束啦,但是学无止境,想要了解学习更多关于文章的相关知识,请关注golang学习网公众号!
声明:本文转载于:dev.to 如有侵犯,请联系study_golang@163.com删除
相关阅读
更多>
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
-
501 收藏
最新阅读
更多>
-
239 收藏
-
376 收藏
-
356 收藏
-
189 收藏
-
252 收藏
-
149 收藏
课程推荐
更多>
-
- 前端进阶之JavaScript设计模式
- 设计模式是开发人员在软件开发过程中面临一般问题时的解决方案,代表了最佳的实践。本课程的主打内容包括JS常见设计模式以及具体应用场景,打造一站式知识长龙服务,适合有JS基础的同学学习。
- 立即学习 542次学习
-
- GO语言核心编程课程
- 本课程采用真实案例,全面具体可落地,从理论到实践,一步一步将GO核心编程技术、编程思想、底层实现融会贯通,使学习者贴近时代脉搏,做IT互联网时代的弄潮儿。
- 立即学习 507次学习
-
- 简单聊聊mysql8与网络通信
- 如有问题加微信:Le-studyg;在课程中,我们将首先介绍MySQL8的新特性,包括性能优化、安全增强、新数据类型等,帮助学生快速熟悉MySQL8的最新功能。接着,我们将深入解析MySQL的网络通信机制,包括协议、连接管理、数据传输等,让
- 立即学习 497次学习
-
- JavaScript正则表达式基础与实战
- 在任何一门编程语言中,正则表达式,都是一项重要的知识,它提供了高效的字符串匹配与捕获机制,可以极大的简化程序设计。
- 立即学习 487次学习
-
- 从零制作响应式网站—Grid布局
- 本系列教程将展示从零制作一个假想的网络科技公司官网,分为导航,轮播,关于我们,成功案例,服务流程,团队介绍,数据部分,公司动态,底部信息等内容区块。网站整体采用CSSGrid布局,支持响应式,有流畅过渡和展现动画。
- 立即学习 484次学习