📜  Python|第 2 组(变量、表达式、条件和函数)

📅  最后修改于: 2022-05-13 01:54:30.295000             🧑  作者: Mango

Python|第 2 组(变量、表达式、条件和函数)

本文已经介绍了Python的介绍。现在,让我们从学习Python开始。

在Python中运行你的第一个代码
Python程序不是编译的,而是被解释的。现在,让我们开始编写Python代码并运行它。请确保在您正在使用的系统上安装了Python 。如果未安装,请从此处下载。我们将使用Python 2.7。

制作Python文件:
Python文件以扩展名“.py”存储。打开文本编辑器并保存一个名为“hello.py”的文件。打开它并编写以下代码:

Python3
print ("Hello World")
# Notice that NO semi-colon is to be used


Python3
a = 3
A = 4
print (a)
print (A)


Python3
a = 2
b = 3
c = a + b
print (c)
d = a * b
print (d)


Python3
a = 3
b = 9
if b % a == 0 :
    print ("b is divisible by a")
elif b + 1 == 10:
    print ("Increment in b produces 10")
else:
    print ("You are in else statement")


Python3
# Function for checking the divisibility
# Notice the indentation after function declaration
# and if and else statements
def checkDivisibility(a, b):
    if a % b == 0 :
        print ("a is divisible by b")
    else:
        print ("a is not divisible by b")
#Driver program to test the above function
checkDivisibility(4, 2)


读取文件内容:
Linux 系统 – 使用“cd”命令从终端移动到存储创建的文件 (hello.py) 的目录,然后在终端中键入以下内容:

python hello.py

Windows 系统 – 打开命令提示符并使用“cd”命令移动到存储文件的目录,然后通过将文件名写入命令来运行文件。

Python中的变量
变量不需要首先在Python中声明。它们可以直接使用。与大多数其他编程语言一样, Python中的变量区分大小写。

例子:

Python3

a = 3
A = 4
print (a)
print (A)

输出是:

3
4

Python中的表达式
Python中的算术运算可以通过使用算术运算运算符和一些内置函数来执行。

Python3

a = 2
b = 3
c = a + b
print (c)
d = a * b
print (d)

输出是:

5
6

Python中的条件
Python中的条件输出可以通过使用if-else和elif(else if)语句来获得。

Python3

a = 3
b = 9
if b % a == 0 :
    print ("b is divisible by a")
elif b + 1 == 10:
    print ("Increment in b produces 10")
else:
    print ("You are in else statement")

输出是:

b is divisible by a

Python中的函数
Python中的函数由函数名称前的关键字'def'声明。函数的返回类型不需要在Python中明确指定。该函数可以通过在括号中写入函数名后跟参数列表来调用。

Python3

# Function for checking the divisibility
# Notice the indentation after function declaration
# and if and else statements
def checkDivisibility(a, b):
    if a % b == 0 :
        print ("a is divisible by b")
    else:
        print ("a is not divisible by b")
#Driver program to test the above function
checkDivisibility(4, 2)

输出是:

a is divisible by b

因此, Python是一种非常简化且不那么繁琐的编码语言Python的这种易用性本身就促进了它的广泛使用。

https://www.youtube.com/watch?v=gzDPuWKjmGQ

  • 下一篇 - Python数据类型
  • 测验 - Python中的函数