首页  >  文章  >  后端开发  >  Python 教程 - 简介

Python 教程 - 简介

王林
王林原创
2024-08-25 06:01:50378浏览

Python 是目前最流行的编程语言之一,尤其是随着人工智能技术的兴起。 Python 是一种多用途编程语言,用于开发 Web 应用程序、后端服务、数据科学和机器学习等许多东西。

设置

以下是使用 Python 编码的准备工作:

  1. 下载 Python 然后安装它。
  2. 您可以使用任何文本编辑器来编写 Python 代码(例如 Visual Studio Code)或专用 IDE(例如 PyCharm)。

编写第一个代码

创建一个名为 main.py、扩展名为 .py 的新文件。然后编写这段代码。

print("Hello World!")

运行此命令来执行Python代码。

python main.py

这是输出。

Hello World!

基于上面的代码,print()函数显示Hello World!文字。

变量和数据类型

变量是存储整数、浮点数和字符串(一堆字母数字字符)等值的地方。这是 Python 中变量使用的示例。

number = 42
username = "John Doe"
price = 2.95

要显示变量的值,请使用 print() 函数。

number = 42
username = "John Doe"
price = 2.95

# display a value from variable
print("this is a number", number)
print("price: ", price)
# using formatting
print(f"hello, my username is {username}")

这是输出。

this is a number 42
price:  2.95
hello, my username is John Doe

这是Python中常用数据类型的列表。

Data Type Value
Integer non-decimal number
Float decimal number
String Alphanumeric characters
Boolean True or False

操作员

Python中有许多基本的算术运算符。这些运算符可用于执行整数和浮点数等数字数据类型的计算。

Operator Description
+ add operation
- substract operation
* multiply operation
/ division operation
// floor division operation
% modulo operation (get the remainder from division operation)
** Perform the operation of raising a number to the power of a number

这是 Python 中运算符使用的示例。

first = 4
second = 2

addition = first + second
subtraction = first - second
multiplication = first * second
division = first / second
mod = first % second
square_of_first = first ** 2

print(f'{first} + {second} = {addition}')
print(f'{first} - {second} = {subtraction}')
print(f'{first} * {second} = {multiplication}')
print(f'{first} / {second} = {division}')
print(f'{first} % {second} = {mod}')
print(f'{first} ** {2} = {square_of_first}')

输出

4 + 2 = 6
4 - 2 = 2
4 * 2 = 8
4 / 2 = 2.0
4 % 2 = 0
4 ** 2 = 16

// 运算符执行除法,然后返回除法结果的下限。

result = 29 // 5 # returns 5 (actual value before floor operation: 5.8)

添加用户输入

input() 函数读取用户的输入。此函数对于在 Python 中创建交互式程序非常有用。默认情况下,input() 返回 String 数据类型。

这是使用 input() 函数的基本示例。

# get username from input
username = input("enter username: ")
# get age from input
# the int() function converts string into integer data type
age = int(input("enter age: "))

print(f"username: {username}")
print(f"age: {age}")

输出

Python Tutorial - ntroduction

示例 1 - 矩形面积计算

让我们用 Python 创建一个矩形面积计算程序。该程序允许用户输入矩形的长度和宽度。然后,程序计算矩形的面积,然后将其显示给用户。

# get length from user input
length = int(input("enter length: "))

# get width from user input
width = int(input("enter width: "))

# calculate the area of rectangle
area = length * width

# display the result
print(f"area of rectangle: {area}")

输出

Python Tutorial - ntroduction

示例 2 - 获取折扣价

让我们创建一个程序来计算应用折扣后商品的价格。该程序允许用户输入实际价格和折扣。然后,程序返回折扣价。

# get price from user input
price = int(input("enter price: "))

# get discount from user input
discount = int(input("enter discount: "))

# calculate the discounted price
discounted_price = price - (price * (discount / 100))

# display the result
print(f"original price: {price}")
print(f"discounted price: {discounted_price}")

输出

Python Tutorial - ntroduction

来源

  • Python 官方页面。
  • Python 教程。

希望这篇文章对你学习Python有所帮助。如果您有任何意见,请在评论区告诉我。

以上是Python 教程 - 简介的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn