码迷,mamicode.com
首页 >  
搜索关键字:python2.7 tab自动补全 readline    ( 2135个结果
字符流缓冲区
1、字符缓冲区的原理 其实就是将数组进行封装。变成对象后,方便于对缓冲区的操作,提高效率。并提供了对文本便捷操作的方法。readLine( )&newLine( )。 缓冲区的基本思想就是对要处理的数据进行临时存储。譬如购物车以及篮子。 原理:减少频繁的操作,给读取流对象和写入流对象提供中转站,相对 ...
分类:其他好文   时间:2020-09-17 13:01:26    阅读次数:33
文件操作
5.文件操作 File类 构造函数: File fille = new File(String file); File fille = new File(String parent,String child); File fille = new File(File parentfile,String ...
分类:其他好文   时间:2020-08-28 11:50:08    阅读次数:42
rabbitmq topic
var factory = new ConnectionFactory(); factory.HostName = "localhost"; factory.UserName = "admin"; factory.Password = "admin"; using (var connection = ...
分类:其他好文   时间:2020-08-18 13:55:53    阅读次数:61
python3.5安装
1.安装相关依赖库(工具包) yum install gcc patch libffi-devel python-devel zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel ...
分类:编程语言   时间:2020-08-10 16:15:09    阅读次数:85
查找word操作(支持多关键字查找)
1 using System; 2 using System.Net; 3 using System.IO; 4 using System.Text; 5 using System.Text.RegularExpressions; 6 using System.Net.Security; 7 usi ...
分类:其他好文   时间:2020-07-25 23:19:26    阅读次数:198
C# update configuration file
using System.Configuration; static void Main(string[] args) { UpdateConfigAppSettings(); ReadConfig(); Console.ReadLine(); } static void UpdateConfigA ...
分类:Windows程序   时间:2020-07-20 22:42:37    阅读次数:83
C# 使用Enumerable.Range 打印数字
static void Main(string[] args) { var list1 = Enumerable.Range(0, (int)Math.Pow(2, 22)).ToList(); var list2 = new List<int>(list1); list2.Add(1); Cons ...
分类:编程语言   时间:2020-07-18 22:06:18    阅读次数:69
实现三次登录
三次登录 写一个函数完成三次登录,三次不成功则登录失败,失败返回False,登陆成功返回True 用户的用户名和密码存储在文件中,该文件包含多个用户名以及对应的密码, 形式为:name|password,每个人占用文件的一行 实现代码: def login(): flag = 0 # 用于三次循环 ...
分类:其他好文   时间:2020-07-16 22:01:56    阅读次数:82
用for循环打印99乘法表
用for循环打印99乘法表。 首先,我们先来编写某一个数,比如说9的乘法表的代码: int i=9; for(int j=1;j<=i;j++) { Console.Write(i + "*" + j + "=" + i * j + "\t"); } Console.WriteLine(); 上述代 ...
分类:其他好文   时间:2020-07-14 13:01:47    阅读次数:59
Lua安装
//从官网下载安装包curl -R -O http://www.lua.org/ftp/lua-5.3.5.tar.gz//解压安装包tar zxf lua-5.3.5.tar.gz//进入文件夹中cd lua-5.3.5//如果安装了readline,直接进行↓(若无安装会报错,解决方法看下方)m ...
分类:其他好文   时间:2020-07-13 11:40:36    阅读次数:71
2135条   上一页 1 ... 3 4 5 6 7 ... 214 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!