tkinter.place

时间: 2023-09-15 15:15:20 浏览: 112
PDF

Python tkinter中place()方法失效原因

在使用 Tkinter 进行 GUI 开发时,可以使用 `place` 方法来设置组件的布局。`place` 方法可以将组件放置在父容器的指定位置,其语法为: ``` widget.place(options) ``` 其中,`options` 参数是一个字典,可以包含以下选项: - `x`:组件左上角的 x 坐标。 - `y`:组件左上角的 y 坐标。 - `width`:组件的宽度。 - `height`:组件的高度。 - `anchor`:组件的对齐方式,可以是 `N`、`S`、`E`、`W`、`NE`、`NW`、`SE` 或 `SW`。 - `relx`:组件左上角相对于父容器宽度的比例。 - `rely`:组件左上角相对于父容器高度的比例。 - `relwidth`:组件宽度相对于父容器宽度的比例。 - `relheight`:组件高度相对于父容器高度的比例。 其中,`x`、`y`、`width` 和 `height` 选项可以与 `relx`、`rely`、`relwidth` 和 `relheight` 选项任意组合使用,以实现不同的布局效果。
阅读全文

相关推荐

import tkinter import tkinter.messagebox def Button_Click(btn): btn_Label = tkinter.Entry(mainUI) btn_Label.insert(tkinter.END,btn) btn_Label.place(x=45,y=75,width=40,height=20) mainUI = tkinter.Tk() mainUI.title('计算器') mainUI.geometry('300x280') #输入数字的两个文本框 num1_Label = tkinter.Label(mainUI,text='number 1 :',justify=tkinter.LEFT,anchor='e') num1_Label.place(x=25,y=20,width=80,height=30) num2_Label = tkinter.Label(mainUI,text='number 2 :',justify=tkinter.LEFT,anchor='e') num2_Label.place(x=25,y=125,width=80,height=30) num1_Var = tkinter.StringVar(mainUI,value='') num2_Var = tkinter.StringVar(mainUI,value='') num1_Entry = tkinter.Entry(mainUI,width=100,textvariable=num1_Var) num1_Entry.place(x=110,y=25,width=140,height=20) num2_Entry = tkinter.Entry(mainUI,width=100,textvariable=num2_Var) num2_Entry.place(x=110,y=130,width=140,height=20) #创建加减乘除按钮及显示文本框 sum_Button = tkinter.Button(mainUI,text='+',command=lambda :Button_Click('+')) sum_Button.place(x=100,y=75,width=30,height=20) min_Button = tkinter.Button(mainUI,text='-',command=lambda :Button_Click('-')) min_Button.place(x=145,y=75,width=30,height=20) mul_Button = tkinter.Button(mainUI,text='x',command=lambda :Button_Click('x')) mul_Button.place(x=190,y=75,width=30,height=20) div_Button = tkinter.Button(mainUI,text='/',command=lambda :Button_Click('/')) div_Button.place(x=235,y=75,width=30,height=20) #创建结果框以及计算按钮 cal_Label = tkinter.Label(mainUI,text='result :',justify=tkinter.LEFT,anchor='e') cal_Label.place(x=25,y=175,width=80,height=20) cal_Entry = tkinter.Entry(mainUI) cal_Entry.place(x=110,y=175,width=80,height=20) cal_Button = tkinter.Button(mainUI,text='Calculate') cal_Button.place(x=110,y=225,width=80,height=20) mainUI.mainloop()完善此代码中Calculate按钮被按下后进行的计算及输出操作

import tkinter def run1(): a = float(entry1.get()) b = float(entry2.get()) c = float(entry3.get()) d = a*b/c entry4.insert(tkinter.END,d) def run2(): file = open("实验记录.txt","w") data = float(entry1.get(),entry2.get(),entry3.get(),entry4.get()).split() file.write(data) file.close() root = tkinter.Tk() root.geometry ("320x240") root.title("氢氧化钠滴定醋酸浓度实验") label1 = tkinter.Label (root,text = "输入氢氧化钠浓度(mol/L):") label2 = tkinter.Label (root,text = "输入氢氧化钠体积(L):") label3 = tkinter.Label (root,text = "输入醋酸体积(L):") label4 = tkinter.Label (root,text = "醋酸的浓度是(mol/L):") label1 .place (relx=0.1,rely=0.1,relheight=0.15,relwidth=0.5) label2 .place (relx=0.1,rely=0.3,relheight=0.15,relwidth=0.4) label3 .place (relx=0.1,rely=0.5,relheight=0.15,relwidth=0.4) label4 .place (relx=0.1,rely=0.7,relheight=0.15,relwidth=0.4) entry1 = tkinter.Entry(root) entry2 = tkinter.Entry(root) entry3 = tkinter.Entry(root) entry4 = tkinter.Text(root) entry1.place(relx=0.6,rely=0.1,relheight=0.15,relwidth=0.3) entry2.place(relx=0.6,rely=0.3,relheight=0.15,relwidth=0.3) entry3.place(relx=0.6,rely=0.5,relheight=0.15,relwidth=0.3) entry4.place(relx=0.6,rely=0.7,relheight=0.15,relwidth=0.3) button1 = tkinter.Button (root,text="计算醋酸的浓度",command=run1) button2 = tkinter.Button (root,text="保存数据",command=run2) button1.place(relx=0.2,rely=0.89,relheight=0.1,relwidth=0.3) button2.place(relx=0.6,rely=0.89,relheight=0.1,relwidth=0.3) root.mainloop()检查错误

def addstudents(stuid,stuname,stusex,stuaddress,china,math,english): sqlstr="""insert into students(stuid,stuname,stusex,stuaddress,china,math,english) values(?,?,?,?,?,?,?)""" cursor.execute(sqlstr,(stuid,stuname,stusex,stuaddress,china,math,english)) cursor.commit() return stuid,stuname,stusex,stuaddress,china,math,english #添加学生信息的窗口 def windowadd(): window=tkinter.Toplevel() window.title("添加学生信息")#窗口名字 window.geometry("600x500")#窗口大小 #学号的标签和entry sid=tkinter.StringVar() sid.set("") lable1=tkinter.Label(window,text="学 号:",font=(20),width=25) lable1.place(x=40,y=50,anchor='nw') input1=tkinter.Entry(window,show=None,font=(20),textvariable=sid,width=25) input1.place(x=200,y=50,anchor='nw') sname=tkinter.StringVar() sname.set("") lable2=tkinter.Label(window,text="姓 名:",font=(20),width=25) lable2.place(x=40,y=100,anchor='nw') input2=tkinter.Entry(window,show=None,font=(20),textvariable=sname,width=25) input2.place(x=200, y=100, anchor='nw') ssex=tkinter.StringVar() ssex.set("") lable3=tkinter.Label(window,text="性 别:",font=(20),width=25) lable3.place(x=40,y=150,anchor='nw') input3=tkinter.Entry(window,show=None,font=(20),textvariable=ssex,width=25) input3.place(x=200, y=150, anchor='nw') saddress=tkinter.StringVar() saddress.set("") lable4=tkinter.Label(window,text="地 址:",font=(20),width=25) lable4.place(x=40,y=200,anchor='nw') input4=tkinter.Entry(window,show=None,font=(20),textvariable=saddress,width=25) input4.place(x=200, y=200, anchor='nw') schina=tkinter.StringVar() schina.set("") lable5=tkinter.Label(window,text="语 文:",font=(20),width=25) lable5.place(x=40,y=250,anchor='nw') input5=tkinter.Entry(window,show=None,font=(20),textvariable=schina,width=25) input5.place(x=200, y=250, anchor='nw') smath=tkinter.StringVar() smath.set("") lable6=tkinter.Label(window,text="数 学:",font=(20),width=25) lable6.place(x=40,y=300,anchor='nw') input6=tkinter.Entry(window,show=None,font=(20),textvariable=smath,width=25) input6.place(x=200, y=300, anchor='nw') seng=tkinter.StringVar() seng.set("") lable7=tkinter.Label(window,text="英 语:",font=(20),width=25) lable7.place(x=40,y=350,anchor='nw') input7=tkinter.Entry(window,show=None,font=(23),textvariable=seng,width=25) input7.place(x=200, y=350, anchor='nw') b_yes=tkinter.Button(window,text='确认',bg='blue',font=(20),command=lambda:addstudents(sid.get(),sname.get(),ssex.get(),saddress.get(),schina.get(),smath.get(),seng.get())) b_yes.place(x=70,y=420,anchor='nw') b_no=tkinter.Button(window,text="取消",bg='blue',font=(23),command=lambda :window.destroy()) b_no.place(x=400,y=420,anchor='nw') window.mainloop() 为什么会有 File "D:\pythonProject2\main.py", line 119, in <lambda> b_yes=tkinter.Button(window,text='确认',bg='blue',font=(20),command=lambda:addstudents(sid.get(),sname.get(),ssex.get(),saddress.get(),schina.get(),smath. TypeError: 'Button' object is not callable的错误

修改代码使其能实现动态表情包的发送和显示#表情包模块 #用四个按钮定义四种表情包 b1 = b2 = b3 =b4 =b5='' #四幅图片 p1 = tkinter.PhotoImage(file='emoji/facepalm.png') p2 = tkinter.PhotoImage(file='emoji/smirk.png') p3 = tkinter.PhotoImage(file='emoji/concerned.png') p4 = tkinter.PhotoImage(file='emoji/smart.png') p5 = tkinter.PhotoImage(file='emoji/tushe.png') #用字典将标识符与表情图片一一对应 dic = {'aa**':p1,'bb**':p2,'cc**':p3,'dd**':p4,'ff**':p5} ee = 0 #表情面板开关标志 #发送表情的函数 def send_mark(exp): ''' :param exp: 表情图片对应的标识符 :return: ''' global ee mes = exp +':;'+user+':;'+chat_to s.send(mes.encode()) b1.destroy() b2.destroy() b3.destroy() b4.destroy() b5.destroy() ee = 0 #四种表情包的标识符发送函数 def bb1(): send_mark('aa**') def bb2(): send_mark('bb**') def bb3(): send_mark('cc**') def bb4(): send_mark('dd**') def bb5(): send_mark('ff**') #表情包面包操控函数 def express_board(): global b1,b2,b3,b4,b5,ee if ee == 0: #打开表情包面板 ee = 1 b1 = tkinter.Button(root,command=bb1,image=p1,relief=tkinter.FLAT,bd=0) b2 = tkinter.Button(root,command=bb2,image=p2,relief=tkinter.FLAT,bd=0) b3 = tkinter.Button(root,command=bb3,image=p3,relief=tkinter.FLAT,bd=0) b4 = tkinter.Button(root,command=bb4,image=p4,relief=tkinter.FLAT,bd=0) b5 = tkinter.Button(root,command=bb5,image=p5,relief=tkinter.FLAT,bd=0) b1.place(x=5,y=248) b2.place(x=75,y=248) b3.place(x=145, y=248) b4.place(x=215, y=248) b5.place(x=285, y=248) else: #关闭表情包面板 ee = 0 b1.destroy() b2.destroy() b3.destroy() b4.destroy() b5.destroy() #表情包面板开关按钮 eBut = tkinter.Button(root,text='表情包',command=express_board) eBut.place(x=5,y=320,width=60,height=30)

import wave import threading import tkinter import tkinter.filedialog import tkinter.messagebox import pyaudio root = tkinter.Tk() root.title('Recorder') root.geometry('270x80+550+300') root.resizable(False, False) fileName = None allowRecording = False # 录音状态 CHUNK_SIZE = 1024 # 数据块大小 CHANNELS = 2 # 频道 FORMAT = pyaudio.paInt16 # 16位量化编码 RATE = 44100 # 音频采样率 def record(): global fileName p = pyaudio.PyAudio() # audio流对象 stream = p.open(format=FORMAT, channels=CHANNELS, rate=RATE, input=True, frames_per_buffer=CHUNK_SIZE) # 音频文件对象 wf = wave.open(fileName, 'wb') wf.setnchannels(CHANNELS) wf.setsampwidth(p.get_sample_size(FORMAT)) wf.setframerate(RATE) # 读取数据写入文件 while allowRecording: data = stream.read(CHUNK_SIZE) wf.writeframes(data) wf.close() stream.stop_stream() stream.close() p.terminate() fileName = None def start(): global allowRecording, fileName fileName = tkinter.filedialog.asksaveasfilename(filetypes=[('未压缩波形文件', '*.wav')]) if not fileName: return if not fileName.endswith('.wav'): fileName = fileName + '.wav' allowRecording = True lbStatus['text'] = 'Recording...' threading.Thread(target=record).start() def stop(): global allowRecording allowRecording = False lbStatus['text'] = 'Ready' # 关闭程序时检查是否正在录制 def closeWindow(): if allowRecording: tkinter.messagebox.showerror('Recording', 'Please stop recording before close the window.') return root.destroy() btnStart = tkinter.Button(root, text='Start', command=start) btnStart.place(x=30, y=20, width=100, height=20) btnStop = tkinter.Button(root, text='Stop', command=stop) btnStop.place(x=140, y=20, width=100, height=20) lbStatus = tkinter.Label(root, text='Ready', anchor='w', fg='green') # 靠左显示绿色状态字 lbStatus.place(x=30, y=50, width=200, height=20) root.protocol('WM_DELETE_WINDOW', closeWindow) root.mainloop()

from tkinter import * import re import tkinter def hit_button(n): temp=contentVar.get() if temp.startswith('.'): temp='0'+temp if n in '0123456789': temp += n elif n=='清除': temp='' elif n=='=': try: temp=str(eval(temp)) except: root1.messagebox.showerror('错误','表达式有误') return elif n in oprators: if temp.endwish(operators): root1.messagebox.showerror('错误') return temp+=n contentVar.set(temp) #首页点击 def hit_me(): #计算器设计 root1=Tk() root1.geometry('300x500+500+100') #计算器大小不被改变 root1.resizable(False, False) root1.title('计算器') contentVar=tkinter.StringVar(root1,'') entry=Entry(root1,width=40,text=contentVar) #文本框设置为只读 entry['state'] = 'readonly' entry.pack() box1=['清除','='] box2=['7','8','9','+','4','5','6','-','1','2','3','*','sqrt','0','.', '/'] num=0 button1=tkinter.Button(root1,text=box1[0],command=hit_button('清除')) button2=tkinter.Button(root1,text=box1[1],command=hit_button(box1[2])) button1.place(x=20,y=30,width=100,height=30) button2.place(x=180,y=30,width=100,height=30) for i in range(4): for j in range(4): a=box2[num] num+=1 buttons=tkinter.Button(root1,text=a,command=hit_button(a)) buttons.place(x=20+j*70,y=80+i*30,width=50,height=20) operators = ('+','-','*','/','sqrt') #首页设计 root=tkinter.Tk() root.geometry('500x210+500+200') root.title('首页') photo=tkinter.PhotoImage(file=r"C:\Users\DELL\Desktop\Python\计算器\\欢迎图片.gif") tkinter.Label(root, image = photo).pack() x=tkinter.Button(root,text='开始计算吧',borderwidth=0,command=hit_me) x.place(x=180,y=10,width=150,height=50) tkinter.mainloop()

最新推荐

recommend-type

python tkinter组件摆放方式详解

本篇将详细介绍Tkinter中的组件摆放方式,包括`pack()`、`grid()`和`place()`三种方法。 首先,创建一个最基本的Tkinter界面需要导入`tkinter`模块并创建一个主窗口对象。例如: ```python import tkinter root = ...
recommend-type

polylearn-0.1.dev0-cp35-cp35m-win32.whl.rar

python whl离线安装包 pip安装失败可以尝试使用whl离线安装包安装 第一步 下载whl文件,注意需要与python版本配套 python版本号、32位64位、arm或amd64均有区别 第二步 使用pip install XXXXX.whl 命令安装,如果whl路径不在cmd窗口当前目录下,需要带上路径 WHL文件是以Wheel格式保存的Python安装包, Wheel是Python发行版的标准内置包格式。 在本质上是一个压缩包,WHL文件中包含了Python安装的py文件和元数据,以及经过编译的pyd文件, 这样就使得它可以在不具备编译环境的条件下,安装适合自己python版本的库文件。 如果要查看WHL文件的内容,可以把.whl后缀名改成.zip,使用解压软件(如WinRAR、WinZIP)解压打开即可查看。 为什么会用到whl文件来安装python库文件呢? 在python的使用过程中,我们免不了要经常通过pip来安装自己所需要的包, 大部分的包基本都能正常安装,但是总会遇到有那么一些包因为各种各样的问题导致安装不了的。 这时我们就可以通过尝试去Python安装包大全中(whl包下载)下载whl包来安装解决问题。
recommend-type

基于Simulink的语音信号降噪与增强.docx

基于Simulink的语音信号降噪与增强.docx
recommend-type

SSM Java项目:StudentInfo 数据管理与可视化分析

资源摘要信息:"StudentInfo 2.zip文件是一个压缩包,包含了多种数据可视化和数据分析相关的文件和代码。根据描述,此压缩包中包含了实现人员信息管理系统的增删改查功能,以及生成饼图、柱状图、热词云图和进行Python情感分析的代码或脚本。项目使用了SSM框架,SSM是Spring、SpringMVC和MyBatis三个框架整合的简称,主要应用于Java语言开发的Web应用程序中。 ### 人员增删改查 人员增删改查是数据库操作中的基本功能,通常对应于CRUD(Create, Retrieve, Update, Delete)操作。具体到本项目中,这意味着实现了以下功能: - 增加(Create):可以向数据库中添加新的人员信息记录。 - 查询(Retrieve):可以检索数据库中的人员信息,可能包括基本的查找和复杂的条件搜索。 - 更新(Update):可以修改已存在的人员信息。 - 删除(Delete):可以从数据库中移除特定的人员信息。 实现这些功能通常需要编写相应的后端代码,比如使用Java语言编写服务接口,然后通过SSM框架与数据库进行交互。 ### 数据可视化 数据可视化部分包括了生成饼图、柱状图和热词云图的功能。这些图形工具可以直观地展示数据信息,帮助用户更好地理解和分析数据。具体来说: - 饼图:用于展示分类数据的比例关系,可以清晰地显示每类数据占总体数据的比例大小。 - 柱状图:用于比较不同类别的数值大小,适合用来展示时间序列数据或者不同组别之间的对比。 - 热词云图:通常用于文本数据中,通过字体大小表示关键词出现的频率,用以直观地展示文本中频繁出现的词汇。 这些图表的生成可能涉及到前端技术,如JavaScript图表库(例如ECharts、Highcharts等)配合后端数据处理实现。 ### Python情感分析 情感分析是自然语言处理(NLP)的一个重要应用,主要目的是判断文本的情感倾向,如正面、负面或中立。在这个项目中,Python情感分析可能涉及到以下几个步骤: - 文本数据的获取和预处理。 - 应用机器学习模型或深度学习模型对预处理后的文本进行分类。 - 输出情感分析的结果。 Python是实现情感分析的常用语言,因为有诸如NLTK、TextBlob、scikit-learn和TensorFlow等成熟的库和框架支持相关算法的实现。 ### IJ项目与readme文档 "IJ项目"可能是指IntelliJ IDEA项目,IntelliJ IDEA是Java开发者广泛使用的集成开发环境(IDE),支持SSM框架。readme文档通常包含项目的安装指南、运行步骤、功能描述、开发团队和联系方式等信息,是项目入门和理解项目结构的首要参考。 ### 总结 "StudentInfo 2.zip"是一个综合性的项目,涉及到后端开发、前端展示、数据分析及自然语言处理等多个技术领域。通过这个项目,可以学习到如何使用SSM框架进行Web应用开发、实现数据可视化和进行基于Python的情感分析。这对于想要掌握Java Web开发和数据处理能力的学习者来说是一个很好的实践机会。
recommend-type

管理建模和仿真的文件

管理Boualem Benatallah引用此版本:布阿利姆·贝纳塔拉。管理建模和仿真。约瑟夫-傅立叶大学-格勒诺布尔第一大学,1996年。法语。NNT:电话:00345357HAL ID:电话:00345357https://theses.hal.science/tel-003453572008年12月9日提交HAL是一个多学科的开放存取档案馆,用于存放和传播科学研究论文,无论它们是否被公开。论文可以来自法国或国外的教学和研究机构,也可以来自公共或私人研究中心。L’archive ouverte pluridisciplinaire
recommend-type

负载均衡技术深入解析:确保高可用性的网络服务策略

![负载均衡技术深入解析:确保高可用性的网络服务策略](https://media.geeksforgeeks.org/wp-content/uploads/20240130183502/Source-IP-hash--(1).webp) # 1. 负载均衡技术概述 ## 1.1 负载均衡技术的重要性 在现代信息技术不断发展的今天,互联网应用的规模和服务的复杂性日益增长。因此,为了确保高性能、高可用性和扩展性,负载均衡技术变得至关重要。它能够有效地分配和管理网络或应用程序的流量,使得服务器和网络资源得以最优利用。 ## 1.2 负载均衡技术的基本概念 负载均衡是一种网络流量管理技术,旨
recommend-type

怎么解决头文件重复包含

解决头文件重复包含的问题主要有以下几个策略: 1. **包含 guards**:在头文件开头添加一种特殊的标识符(通常是宏),如 `#ifndef` 和 `#define` 对组合,检查某个特定宏是否已经定义过。如果没有定义,则包含内容,然后设置该宏。如果在同一文件内再次包含,由于宏已经存在,就不会再执行包含的内容,从而避免重复。 ```cpp #ifndef HEADER_NAME_H_ #define HEADER_NAME_H_ // 内容... #endif // HEADER_NAME_H_ ``` 2. **使用 extern 关键字**:对于非静态变量和函数,可以将它们
recommend-type

pyedgar:Python库简化EDGAR数据交互与文档下载

资源摘要信息:"pyedgar:用于与EDGAR交互的Python库" 知识点说明: 1. pyedgar库概述: pyedgar是一个Python编程语言下的开源库,专门用于与美国证券交易委员会(SEC)的电子数据获取、访问和检索(EDGAR)系统进行交互。通过该库,用户可以方便地下载和处理EDGAR系统中公开提供的财务报告和公司文件。 2. EDGAR系统介绍: EDGAR系统是一个自动化系统,它收集、处理、验证和发布美国证券交易委员会(SEC)要求的公司和其他机构提交的各种文件。EDGAR数据库包含了美国上市公司的详细财务报告,包括季度和年度报告、委托声明和其他相关文件。 3. pyedgar库的主要功能: 该库通过提供两个主要接口:文件(.py)和索引,实现了对EDGAR数据的基本操作。文件接口允许用户通过特定的标识符来下载和交互EDGAR表单。索引接口可能提供了对EDGAR数据库索引的访问,以便快速定位和获取数据。 4. pyedgar库的使用示例: 在描述中给出了一个简单的使用pyedgar库的例子,展示了如何通过Filing类与EDGAR表单进行交互。首先需要从pyedgar模块中导入Filing类,然后创建一个Filing实例,其中第一个参数(20)可能代表了提交年份的最后两位,第二个参数是一个特定的提交号码。创建实例后,可以打印实例来查看EDGAR接口的返回对象,通过打印实例的属性如'type',可以获取文件的具体类型(例如10-K),这代表了公司提交的年度报告。 5. Python语言的应用: pyedgar库的开发和应用表明了Python语言在数据分析、数据获取和自动化处理方面的强大能力。Python的简洁语法和丰富的第三方库使得开发者能够快速构建工具以处理复杂的数据任务。 6. 压缩包子文件信息: 文件名称列表中的“pyedgar-master”表明该库可能以压缩包的形式提供源代码和相关文件。文件列表中的“master”通常指代主分支或主版本,在软件开发中,主分支通常包含了最新的代码和功能。 7. 编程实践建议: 在使用pyedgar库之前,建议先阅读官方文档,了解其详细的安装、配置和使用指南。此外,进行编程实践时,应当注意遵守SEC的使用条款,确保只下载和使用公开提供的数据。 8. EDGAR数据的应用场景: EDGAR数据广泛应用于金融分析、市场研究、合规性检查、学术研究等领域。通过编程访问EDGAR数据可以让用户快速获取到一手的财务和公司运营信息,从而做出更加明智的决策。 9. Python库的维护和更新: 随着EDGAR数据库内容的持续更新和变化,pyedgar库也应定期进行维护和更新,以保证与EDGAR系统的接口兼容性。开发者社区对于这类开源项目的支持和贡献也非常重要。 10. 注意事项: 在使用pyedgar库下载和处理数据时,用户应当确保遵守相应的法律法规,尤其是关于数据版权和隐私方面的规定。此外,用户在处理敏感数据时,还需要考虑数据安全和隐私保护的问题。
recommend-type

"互动学习:行动中的多样性与论文攻读经历"

多样性她- 事实上SCI NCES你的时间表ECOLEDO C Tora SC和NCESPOUR l’Ingén学习互动,互动学习以行动为中心的强化学习学会互动,互动学习,以行动为中心的强化学习计算机科学博士论文于2021年9月28日在Villeneuve d'Asq公开支持马修·瑟林评审团主席法布里斯·勒菲弗尔阿维尼翁大学教授论文指导奥利维尔·皮耶昆谷歌研究教授:智囊团论文联合主任菲利普·普雷教授,大学。里尔/CRISTAL/因里亚报告员奥利维耶·西格德索邦大学报告员卢多维奇·德诺耶教授,Facebook /索邦大学审查员越南圣迈IMT Atlantic高级讲师邀请弗洛里安·斯特鲁布博士,Deepmind对于那些及时看到自己错误的人...3谢谢你首先,我要感谢我的两位博士生导师Olivier和Philippe。奥利维尔,"站在巨人的肩膀上"这句话对你来说完全有意义了。从科学上讲,你知道在这篇论文的(许多)错误中,你是我可以依
recommend-type

网络监控工具使用宝典:实时追踪网络状况的专家级技巧

![网络监控工具使用宝典:实时追踪网络状况的专家级技巧](https://docs.itrsgroup.com/docs/geneos/5.8.0/Resources/Images/netprobe/netprobe-api-images/image2_xml-rpc_api_-_user_guide_and_technical_reference.png) # 1. 网络监控工具概述 网络监控工具是确保网络稳定性和安全性不可或缺的组成部分。在这一章节中,我们将概述这些工具的重要性、工作原理以及它们如何帮助IT专业人员提高网络性能和安全性。 ## 1.1 网络监控工具的定义 网络监控工具