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
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
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项目中,我建立一个TFrame,放置一个Text对象,然后设置: 设置Text1.Margins.Right为49。 现在我们有了一个TFrame2类,从这个类再继承一个新的TFrame。 现在我们从Frame2继承出一个Frame3,然后,我们设置Frame3: 把Text1 ...
分类:
其他好文 时间:
2020-03-02 12:57:02
阅读次数:
98
python的os模块-对文件的相关操作 1.文件重命名 os模块中的rename()可以完成对文件的重命名操作rename(需要修改的文件名, 新的文件名) import os os.rename("text1.txt", "text2.txt") 2.删除文件 os模块中的remove()可以完 ...
分类:
编程语言 时间:
2020-02-29 22:43:17
阅读次数:
88
参看:https://blog.csdn.net/q13554515812/article/details/87876552 1、将工具下载后解压,比如解压到 E:\pairs,然后在解压目录中创建一个excel文件,写上各种因素以及可能的值 2、然后将这些值复制到 text1.txt 文件中,并另 ...
分类:
其他好文 时间:
2020-02-20 00:10:33
阅读次数:
124
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
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
原文 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
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