码迷,mamicode.com
首页 >  
搜索关键字:text1    ( 203个结果
python,图形界面编程,tkinter,实现一个最简单的加法计算器的图形界面小程序
from tkinter import * def Calculate(): a1 = int(text1.get('1.0', END)) # 从行首取到行尾 a2 = int(text2.get('1.0', END)) a3 = a1 + a2 text3.delete('1.0', END) ...
分类:微信   时间:2020-03-19 21:30:20    阅读次数:246
HTML中选择器的使用及优先级比较
1.id选择器,其中每个标签的id选择器的值是唯一的 <div id="text1"> css中用 #text1{ } 2.类选择器(class),可以有多个 <div class="text1"></div> <div class="text1 text2"></div> css中用 .text{ ...
分类:Web程序   时间:2020-03-18 23:38:56    阅读次数:88
计算机1802刘思源
package lsiyn; public class Text1 { public static void main(String[] args) { // TODO Auto-generated method stub System.out.println("hello world"); } } ...
分类:其他好文   时间:2020-03-07 12:51:28    阅读次数:62
FireMonkey 继承Frame存在的问题
在FireMonkey项目中,我建立一个TFrame,放置一个Text对象,然后设置: 设置Text1.Margins.Right为49。 现在我们有了一个TFrame2类,从这个类再继承一个新的TFrame。 现在我们从Frame2继承出一个Frame3,然后,我们设置Frame3: 把Text1 ...
分类:其他好文   时间:2020-03-02 12:57:02    阅读次数:98
Python标准库 - os库
python的os模块-对文件的相关操作 1.文件重命名 os模块中的rename()可以完成对文件的重命名操作rename(需要修改的文件名, 新的文件名) import os os.rename("text1.txt", "text2.txt") 2.删除文件 os模块中的remove()可以完 ...
分类:编程语言   时间:2020-02-29 22:43:17    阅读次数:88
正交表法测试工具 - allpairs
参看:https://blog.csdn.net/q13554515812/article/details/87876552 1、将工具下载后解压,比如解压到 E:\pairs,然后在解压目录中创建一个excel文件,写上各种因素以及可能的值 2、然后将这些值复制到 text1.txt 文件中,并另 ...
分类:其他好文   时间:2020-02-20 00:10:33    阅读次数:124
leetcode1143 Longest Common Subsequence
1 """ 2 Given two strings text1 and text2, return the length of their longest common subsequence. 3 A subsequence of a string is a new string generate ...
分类:其他好文   时间:2020-02-12 00:23:03    阅读次数:70
CSS3
1、introduction 2、selector1 3、selector2 4、border&background1 5、border&background2 6、border&background3 7、text1 8、text2 9、box1 10、box2 11、box3 12、homewo ...
分类:Web程序   时间:2020-01-29 16:29:00    阅读次数:93
2018英语一真题 Text1分析
原文 Text 1Among the annoying challenges facing the middle class is one that will probably go unmentioned in the next presidential campaign: What happen ...
分类:其他好文   时间:2020-01-08 14:16:40    阅读次数:435
1143. Longest Common Subsequence
link to problem Description: Given two strings text1 and text2, return the length of their longest common subsequence. A subsequence of a string is a ...
分类:其他好文   时间:2020-01-06 09:54:55    阅读次数:84
203条   上一页 1 2 3 4 5 ... 21 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!