现在您已经安装了 Python 并运行了您的第一个程序,让我们深入研究一些构成每个 Python 程序支柱的基本概念。在这篇文章中,我们将介绍 Python 的语法、运算符和输入/输出操作,为编写函数式代码奠定基础。
Python 的语法设计得简洁且易于阅读,但在深入进行更复杂的编码之前,您需要了解一些基本规则。
缩进
与许多其他编程语言不同,Python 使用缩进来定义代码块,而不是大括号 ({}) 或关键字。这使您的代码在视觉上更干净,但也意味着您必须与间距保持一致。
代码示例:使用缩进
# Correct indentation if True: print("This is properly indented!") # Incorrect indentation (will cause an error) if True: print("This is not properly indented!")
评论
注释用于使代码更具可读性并记录其功能。 Python 使用 # 符号进行单行注释。
# This is a single-line comment print("Python ignores comments when running the code.")
对于多行注释,请使用三引号:
""" This is a multi-line comment. """
关键字和标识符
关键字:Python 中的保留字,如 if、else、for 和 def。您不能将它们用作变量名称。
标识符:用于变量、函数或类的名称。它们必须以字母或下划线 (_) 开头,并且不能包含特殊字符。
运算符是用于对变量和值执行运算的符号。 Python 提供了多种运算符。
算术运算符
用于基本数学运算:
a = 10 b = 3 print(a + b) # Addition print(a - b) # Subtraction print(a * b) # Multiplication print(a / b) # Division print(a % b) # Modulus print(a ** b) # Exponentiation print(a // b) # Floor division
比较运算符
比较两个值并返回布尔值(True 或 False):
print(a > b) # Greater than print(a < b) # Less than print(a == b) # Equal to print(a != b) # Not equal to print(a >= b) # Greater than or equal to print(a <= b) # Less than or equal to
逻辑运算符
组合条件语句:
x = True y = False print(x and y) # Logical AND print(x or y) # Logical OR print(not x) # Logical NOT
接受输入
Python 的 input() 函数允许您通过在程序执行期间接收输入来与用户交互。
代码示例:简单输入
name = input("What is your name? ") print(f"Hello, {name}!")
显示输出
print()函数用于显示信息。您还可以使用 f 字符串进行格式化输出:
# Correct indentation if True: print("This is properly indented!") # Incorrect indentation (will cause an error) if True: print("This is not properly indented!")
让我们将所有内容放在一起创建一个简单的计算器程序,该程序接受用户输入,执行基本操作并显示结果。
代码示例:基本计算器
# This is a single-line comment print("Python ignores comments when running the code.")
为了巩固您所学的知识,请尝试以下额外练习:
""" This is a multi-line comment. """
a = 10 b = 3 print(a + b) # Addition print(a - b) # Subtraction print(a * b) # Multiplication print(a / b) # Division print(a % b) # Modulus print(a ** b) # Exponentiation print(a // b) # Floor division
了解Python的语法、运算符和输入/输出操作是成为自信程序员的第一步。有了这些基础,您就可以处理更高级的主题和项目了。
尝试一下练习,并在下面的评论中告诉我们您的表现!我们很乐意看到您的结果,并在您遇到困难时为您提供帮助。
以上是基本概念 – 运算符等的详细内容。更多信息请关注PHP中文网其他相关文章!