一、基础

  1.编码

    ascii-->GB2312-->GB18030-->GBK-->unicode-->UTF8可变长

  2.数据类型

    int,long,float,complex,string,bool,list,

 l=[]
 l.append   l.copy     l.extend   l.insert   l.remove   l.sort
 l.clear    l.count    l.index    l.pop      l.reverse

  3.运算

 +    -    *    /    %    **    //
 ==     !=     <>     >     <     >=     <=
 =     +=     -=     *=     /=     %=     **=     //=
 and    or    not
 in    not in
 is    is not
 &    |    ^    ~    <<    >>

  4.用户交互  

 # -*- coding:utf8 -*-
 import getpass
 name=input("What is your name?")
 pwd=getpass.getpass("What is your passwd?")

  5.流程控制

 if   ret == 0:
     pass
 else:
     pass

 for i in range(10):
     print(i)

 count=0
 while count >3:
     count +=1

  6.文件操作

  

 f=open('a.txt','r')
 f.read()           #str
 f.readline()      #str 1行
 f.readlines()    #list 每行一个str

 #r
 #w
 #a
 #r+  可读写可追加
 #w+
 #a+
 #rb 二进制
 #wb
 #ab     

s16_day01的更多相关文章

随机推荐

  1. Mounting File Systems

    1.Mounting File Systems Just creating a partition and putting a file system on it is not enough to s ...

  2. N皇后问题--递归回溯

    著名的N皇后问题,就是先按照行一行一行的找,先找第一行,第一行找到一列能满足条件,继续找下一行,如果下一行也找到一列能满足条件,继续找下一行,一次类推,最终找到解, 但是,如果找不到的话, 就说明上一 ...

  3. Regex.Escape

    C# 字符串变量str 的值为"a\nb"如果直接输出显示的话,就成了:ab需要输出显示为:a\nb问,怎么办?千万别告诉我定义: str=@"a\nb",因为 ...

  4. mysql数据库编码

    MySQL数据库默认的编码是: character set :latin1 collation : latin1_swedish_ci 查看MySQL支持的编码: mysql> show cha ...

  5. js的相关验证

    1 var JavaScriptCommon = { /*身份证号码校验*/ VerifyID: function (socialNo) { if (socialNo == "") ...

  6. js回网页顶部

    <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content ...

  7. 武汉科技大学ACM :1001: A+B for Input-Output Practice (I)

    Problem Description Your task is to Calculate a + b. Too easy?! Of course! I specially designed the ...

  8. IO流(随机流,数组内存流

    File file1=new File("test1.txt"); RandomAccessFile in2=new RandomAccessFile(file1,"rw ...

  9. Redis+PHP扩展的安装和Redis集群的配置 与 PHP负载均衡开发方案

    以前有想过用 Memcache 实现M/S架构的负载均衡方案,直到听说了 Redis 后才发现它做得更好.发了几天时间研究了一下 Redis ,感觉真的很不错,特整理一下! 以下操作都是在 SUSE  ...

  10. 设置CentOS里的Mysql开启客户端远程连接

    CentOS系统安装好MySQL后,默认情况下不支持用户通过非本机连接上数据库服务器,下面是解决方法: 1.在控制台执行 mysql -u root -p mysql,系统提示输入数据库root用户的 ...