Python在线运行

版本:

所属目录
点击了解高性能代码运行API
运行结果
教程手册
代码仓库
极速运行
终端运行
图形+终端

                        
以下是用户最新保存的代码
随机抽取小目标 发布于:2024-09-10 22:41 算两个数组的和 发布于:2024-09-08 11:00 zlib加解密 发布于:2024-09-06 17:55 python 位运算 发布于:2024-09-05 17:04 一个计算多项贷款最优分配的算法 发布于:2024-09-05 01:40 智能生理贴片 发布于:2024-09-03 15:55 根据统计的高频关键词生成词云 发布于:2024-09-02 17:31 测试三要素 发布于:2024-08-30 14:28 爬取视频的评论数据 发布于:2024-08-28 22:29 爬取抖音评论 发布于:2024-08-28 21:51 2024.8.27 黑夜.00:30 代码 import matplotlib.pyplot as plt def draw_celebrate(size=200): fig = plt.figure(figsize=(size, size)) ax = fig.add_axes([0, 0, 1, 1]) ax.axis('off') # 绘制庆字 fontsize = size * 0.8 x = size / 2 y = size / 2 plt.text(x, y, '庆', fontsize=fontsize, horizontalalignment='center', verticalalignment='center') plt.show() # 运行函数 draw_celebrate() 发布于:2024-08-27 00:31 刷面试题专用 发布于:2024-08-26 04:48 python在线 发布于:2024-08-25 18:37 python class类学习 发布于:2024-08-24 20:48 最大社交距离 发布于:2024-08-23 15:12 鸡兔同笼代码 发布于:2024-08-21 21:06 猜数字游戏 发布于:2024-08-21 16:57 #这是一个新手的孤独独白 发布于:2024-08-18 17:40 python学习 发布于:2024-08-31 14:57 jeb注册机 发布于:2024-08-18 11:04 mbti测试 发布于:2024-08-16 13:26 测试python 发布于:2024-08-12 11:28 塔防游戏测试 发布于:2024-08-07 11:47 挂号费付付或或多多所木所所所所所所所所过所若若晕 发布于:2024-08-04 17:40 生成销售数据并在指定文件夹内保存 发布于:2024-08-01 13:46 ast测试 发布于:2024-07-31 19:33 燃气泄漏检测 发布于:2024-07-31 17:51 python模拟 发布于:2024-07-30 23:20 省份热力图 发布于:2024-07-29 14:32 python临时测试代码 发布于:2024-07-25 16:15 武侠文字游戏 发布于:2024-07-24 16:15 超级大乐透选号器终极版 发布于:2024-07-23 23:22 json 绘制图 发布于:2024-07-19 21:13 JointQuant WorkFrame Debug 发布于:2024-07-19 11:32 JointQuant FrameWork 发布于:2024-07-19 10:24 电影评分推荐 发布于:2024-07-18 13:45 sfdg wserfg 发布于:2024-07-18 09:57 JointQuant格式 发布于:2024-07-17 16:37 π生成代码 发布于:2024-07-16 14:52 rsa p高位攻击 发布于:2024-07-15 23:02 汇率测试脚本 发布于:2024-07-15 15:22 1. 基础代码“hello,world”输出 2. 循环结构+字符串切片重组应用 3. 条件循环(以加法为例)应用 4. for循环+if语句对字符串进行判定 5. 次数循环一到二十的质数寻找与判断 发布于:2024-07-15 13:38 python代码测试 发布于:2024-07-10 09:25 import os # 定义要对比的照片文件路径 file1 = "path/to/file1.jpg" file2 = "path/to/file2.jpg" # 获取文件大小 file_size1 = os.path.getsize(file1) file_size2 = os.path.getsize(file2) # 获取文件修改时间 modification_time1 = os.path.getmtime(file1) modification_time2 = os.path.getmtime(file2) # 比较文件大小和修改时间 if file_size1 == file_size2 and modification_time1 == modification_time2: print("文件属性相同") else: print("文件属性不同") 发布于:2024-07-09 11:07 毒死手机上啥时候 发布于:2024-07-07 16:48 input practice 发布于:2024-07-06 22:59 print practice 发布于:2024-07-06 22:32 水某人超绝技术左右 发布于:2024-06-29 15:51 画一个爱心 发布于:2024-06-28 11:33 身高体重计算 发布于:2024-06-23 19:42 [更多]
显示目录

函数



学习嵌入式的绝佳套件,esp8266开源小电视成品,比自己去买开发板+屏幕还要便宜,省去了焊接不当搞坏的风险。 蜂鸣版+触控升级仅36元,更强的硬件、价格全网最低。

点击购买 固件广场

Python 函数

本章节我们将为大家介绍Python中函数的应用。

该章节可参阅Python 函数应用详解

Python 定义函数使用 def 关键字,一般格式如下:

def  函数名(参数列表):
    函数体

让我们使用函数来输出"Hello World!":

>>> def hello() :
  print("Hello World!")


>>> hello()
Hello World!
>>>

更复杂点的应用,函数中带上参数变量:

def area(width, height):
    return width * height

def print_welcome(name):
    print("Welcome", name)

print_welcome("Fred")
w = 4
h = 5
print("width =", w, " height =", h, " area =", area(w, h))

以上实例输出结果:

Welcome Fred
width = 4  height = 5  area = 20

函数变量作用域

定义在函数内部的变量拥有一个局部作用域,定义在函数外的拥有全局作用域。

通过以下实例,你可以清楚了解Python函数变量的作用域:

#!/usr/bin/env python3
a = 4  # 全局变量

def print_func1():
    a = 17 # 局部变量
    print("in print_func a = ", a)
def print_func2():   
    print("in print_func a = ", a)
print_func1()
print_func2()
print("a = ", a)

以上实例运行结果如下:

in print_func a =  17
in print_func a =  4
a =  4

关键字参数

函数也可以使用 kwarg=value 的关键字参数形式被调用.例如,以下函数:

def parrot(voltage, state='a stiff', action='voom', type='Norwegian Blue'):
    print("-- This parrot wouldn't", action, end=' ')
    print("if you put", voltage, "volts through it.")
    print("-- Lovely plumage, the", type)
    print("-- It's", state, "!")

可以以下几种方式被调用:

parrot(1000)                                          # 1 positional argument
parrot(voltage=1000)                                  # 1 keyword argument
parrot(voltage=1000000, action='VOOOOOM')             # 2 keyword arguments
parrot(action='VOOOOOM', voltage=1000000)             # 2 keyword arguments
parrot('a million', 'bereft of life', 'jump')         # 3 positional arguments
parrot('a thousand', state='pushing up the daisies')  # 1 positional, 1 keyword

以下为错误调用方法:

parrot()                     # required argument missing
parrot(voltage=5.0, 'dead')  # non-keyword argument after a keyword argument
parrot(110, voltage=220)     # duplicate value for the same argument
parrot(actor='John Cleese')  # unknown keyword argument

返回值

Python的函数的返回值使用return语句,可以将函数作为一个值赋值给指定变量:

def return_sum(x,y):
    c = x + y
    return c

res = return_sum(4,5)
print(res)

你也可以让函数返回空值:

def empty_return(x,y):
    c = x + y
    return

res = empty_return(4,5)
print(res)

可变参数列表

最后,一个最不常用的选择是可以让函数调用可变个数的参数.这些参数被包装进一个元组(查看元组和序列).在这些可变个数的参数之前,可以有零到多个普通的参数:

def arithmetic_mean(*args):
    sum = 0
    for x in args:
        sum += x
    return sum

print(arithmetic_mean(45,32,89,78))
print(arithmetic_mean(8989.8,78787.78,3453,78778.73))
print(arithmetic_mean(45,32))
print(arithmetic_mean(45))
print(arithmetic_mean())

以上实例输出结果为:

244
170009.31
77
45
0
由JSRUN为你提供的Python在线运行、在线编译工具
        JSRUN提供的Python 在线运行,Python 在线运行工具,基于linux操作系统环境提供线上编译和线上运行,具有运行快速,运行结果与常用开发、生产环境保持一致的特点。
yout