Tkinter Canvas画布控件定位布局
import tkinter as tk# PARAMETERSSIZE = 800SQUARES = 10def draw_board(): i = 0 while i < SIZE: canvas.create_line(0, i, SIZE, i) canvas.creat...
import tkinter as tk# PARAMETERSSIZE = 800SQUARES = 10def draw_board(): i = 0 while i < SIZE: canvas.create_line(0, i, SIZE, i) canvas.creat...
原文如下:1、把你写好的python程序文件的扩展名改为.pyw就会调用pythonw.exe执行不带控制台的程序。如何想要别人也机器也能运行你的程序可以用py2exe软件。
2、用pyinstalle...
相对的话地址填 r".\dem.txt" 试试,(.\表示同级目录下)
还有一种思路用path=os.getcwd()获取当前路径,然后os.path.join(path,"dem.txt")组合成绝对路径
if __name__ == '...
#coding:utf-8
import urllib,urllib2
import Tkinter #导入TKinter模块
ytm=Tkinter.Tk() #创建Tk对象
ytm.title("login") #设置窗口标题
ytm.geometry("300x300") #设...
import os
from PIL import Image
import tkinter
import tkinter.filedialog
import tkinter.messagebox
class Window():
def __init__(self):
self.root =...
下载完后直接双击安装exe,默认点击下一步,直到安装完成,会自动安装到Python3.6下的\lib\site-packages\PIL# tkinter实现菜单功能from tkinter import *from PIL import Image,...
__author__ = "dengxinyan"
from PIL import Image, ImageDraw, ImageFont
def watermark(img_path,word):
# 打开图片
img1 = Image.open(img_path)
# 图...
import glob,os,math
from PIL import Image,ImageFont,ImageDraw,ImageEnhance,ImageOps
def gen(im):
mark=Image.new('RGBA',(len('我是水印')*50,r...
python中变量的输出
# 输出函数print的使用
print('hello world')
print('萨瓦迪卡---泰语,你好的意思')
1
2
3
输出结果:
格式化输出
2.1. 为什么要格式化...
import PIL
from PIL import ImageFont,Image,ImageDraw
#设置字体,如果没有,也可以不设置
font = ImageFont.truetype(r"C:\Windows\Fonts\simsun.ttc",70)
#font2 = ImageF...
运行时报错:
Traceback (most recent call last):
File "***.py", line 5, in <module>
from PIL import Image
ModuleNotFoundError: No module named 'PIL'...
1.直接函数调用这是最简单、最直观的方式:def test():print("This is a test")test()2.使用partial()函数在 的内置库中functools,有一个专用于生成偏函数的偏函数partial。de...
python中的集合对象是一组无序排列的可哈希的值。
集合成员可以做字典中的键。
集合支持用in和not in操作符检查成员,由len()内建函数得到集合的大小,
用for循环迭代集合的成...
前面学习了 set 集合,本节来一一学习 set 类型提供的方法。首先,通过 dir(set) 命令可以查看它有哪些方法:>>> dir(set)
['add', 'clear', 'copy', &#...
前言在python列表的元素删除操作中, del, pop(), remove()很容易混淆, 下面对三个语句/方法作出解释del语句del语句可以删除任何位置处的列表元素, 若知道某元素在列表中的...
这三种方法都是list的删除方法,其中remove是针对可变列表的元素进行搜索删除,而pop和del是针对可变列表的下标进行搜索删除。具体区别如下:
1. remove
remove(item)方法是直接...