#encoding=utf-8importtkinterastk#创建窗口,设置标题,大小window=tk.Tk()window.title("我的窗口")window.geometry("400x200")#创建一个Entry输入框,输入框输入字符以星号展示,show=None,展示原文,show="1"#展示1entry=tk.Entry(window,show="*")entry.pack
原创 2018-10-31 13:25:52
942阅读
Highlight a Text Item in Oracle Forms With Visual AttributeIt is very necessary to highlight the current cursor text item in data entry forms so that a user can easily notice the current item. Steps t...
原创 2021-07-21 11:34:18
574阅读
Text属性与方法 Tkinter 之Text文本框标签(转至:) 一、参数说明语法作用t=tk.Text()t.insert(END,'插入的文本信息')t.insert(1.0,'文本信息')在第一行第0列输入文本信息INSERT:光标的插入点CURRENT:鼠标的当前位置所对应的字符位置END:这个Textbuffer的最后一个字符t.
转载 2024-09-01 17:52:46
53阅读
# 如何实现“docker ubuntu supervisor entry point” ## 1. 整体流程 在实现“docker ubuntu supervisor entry point”这个过程中,需要按照以下步骤进行操作: | 步骤 | 操作 | | ---- | ---- | | 1 | 创建一个基于Ubuntu的Docker镜像 | | 2 | 安装Supervisor | |
原创 2024-04-17 06:44:58
40阅读
Created by Jerry Wang, last modified on May 06, 2014新建sales order时,如果未维护notes,则无法save sales order,遇到如下error message:[外链图片转存失败(img-iLdsGe9X-1563545760815)(https://user-images.githubusercontent.com/5...
CRM
原创 2021-07-15 09:31:49
66阅读
新建sales order时,如果未维护notes,则无法save sales order,遇到如下error message:使用tcode SE91的where used list查找message ID BSP_WD number 022, 在第一个hit处设断点:找到抛出error message的code:说明field的mandatory属性不是从workbench UI con...
原创 2021-07-09 10:30:04
79阅读
注:本博客实例均是使用的Python编译器--pycharm默认参数问题引入日常中,我们经常经常计算x^2,所以,完全可以把power()第二个参数n的默认值设定为2:def power(x, n=2): s = 1 while n > 0: n = n - 1 s = s * x return s这样,当调用power(6)时,相当于
转载 2024-04-15 16:00:30
89阅读
1.Matplotlib1.安装Matplotlib $ python -m pip install --user matplotlib 2.Matplotlib官网Matplotlib documentation — Matplotlib 3.8.2 documentation3.函数1.导入模块pyplot,指定别名plt模块pyplot包含很多用于生成图表的函数 import matplot
转载 7月前
50阅读
OverviewTokeninput is a jQuery plugin which allows your users to select multiple items from a predefined list, using autocompletion as they type to find each item. You may have seen a similar typ...
原创 2015-07-22 11:57:23
121阅读
点击Preferences->Settings User,修改配置文件如下:{ "color_scheme": "Packages/Color Scheme - Default/Monokai.tmTheme",    "fallback_encoding": "UTF-8", "font_size": 14
原创 2014-08-01 17:22:12
1046阅读
1\ Add the PPA and install Sublime Text 2 in UbuntuShell代码  收藏代码    sudo add-apt-repository ppa:webupd8team/su
转载 精选 2014-03-20 14:02:03
566阅读
http://jingyan.baidu.com/article/f3ad7d0ff8731609c3345b3b.html
转载 精选 2015-05-23 23:30:20
390阅读
安装环境是Ubuntu 12.10 、Sublime Text 2一、ppa安装方法:1、sudo add-apt-repository ppa:webupd8team/sublime-text-2     sudo apt-get update2、sudo apt-get install sublime-text-2-beta       &nb
转载 精选 2013-06-21 15:41:33
2615阅读
1、在官方下载相应的版本(我的是Ubuntu64位系统)得到.tar.bz2文件,然后解压:  tar xf Sublime\ Text\ 2.0.1\ x64.tar.bz2 2、解压后得到Sublime Text 2文件夹,不用什么编译make了,其实它就可以运行了,然后直接把它移动端/usr/lib/下面去: sudo mv Sublime\ Text\ 2 /usr/lib/
原创 2013-09-04 19:11:43
491阅读
1、"draw_white_space": "all", // 显示空白字符, 比如 空格 tab2、配置tab为4个空格// The number of spaces a tab is considered equal to    “tab_size”: 4,// Set to true to insert spaces when ta
原创 2013-09-04 20:31:57
705阅读
Ubuntu 安装Sublime Text3 的步骤如下:1.打开命令行终端:CTRL + ALT + T
原创 2022-08-23 19:26:04
415阅读
 Sublime Text is a cross-platform text and source code editor with a Python API. It is a sophisticated text editor for code, markup and prose. Its functionality is extendable with plugins. Most ...
原创 2023-05-12 21:46:29
93阅读
help --> enter lisence
转载 2016-02-03 11:23:00
156阅读
2评论
Preferences -> Settings - Default在配置文件中设置:"font_face": "WenQuanYi Micro Hei Mono" 重新启动即可。
原创 2013-09-04 19:51:45
430阅读
 Sublime Text is a popular text editor
原创 2023-05-12 22:52:04
255阅读
  • 1
  • 2
  • 3
  • 4
  • 5