python数据类型

python编译图

运行python文件的时候,python会通过编译器将它编译成.pyc文件。
如果没有修改python文件,每次执行程序时,就执行前面运行的程序,不需要重新编译。

字符串类型,使用单引号,或者双引号包围,是由零个或者多个字符串组成的有限串行。

>>> print("what's your name");
what's your name
>>> print("what\'s your name");
what's your name
>>> 'hello'+"world";
'helloworld'
>>> 'i am '+str(66);
'i am 66'

>>> print(" nice you to \n you");
 nice you to 
 you

>>> print('how do \
you \
do');
how do you do

>>> help(input);
Help on built-in function input in module builtins:

通过iput()函数输入数据,还回是字符串类型。

input(prompt=None, /)
    Read a string from standard input.  The trailing newline is stripped.
    
    The prompt string, if given, is printed to standard output without a
    trailing newline before reading input.
    
    If the user hits EOF (*nix: Ctrl-D, Windows: Ctrl-Z+Return), raise EOFError.
On *nix systems, readline is used if available.

>>> name=input("input your name:")
input your name:dflx
>>> name
'dflx'
>>> type(name);
<class 'str'>

求2数之和

print("please input two number");
a=input("input a=");
b=input('input b=');
print("sum=",(int(a)+int(b)));


=================== RESTART: C:/Users/dflx/Desktop/add.py ===================
please input two number
input a=2
input b=3
sum= 5

原始字符串,是指字符串里面的每一个字符都是原始含义,如反斜杠,不会被看成转义字符。可以r表示开头的字符串。

>>> print(r"c;\nl");
c;\nl
>>> print("c;\nl");
c;
l

string有下标index,可以取出字符,index可以索引字符的下标。

>>> st='hello python';
>>> st[0];
'h'
>>> st.index("h");
0
>>> st[0:3];
'hel'
>>> st
'hello python'
>>> type(st[1]);
<class 'str'>

<class 'str'>
>>> st[:5];
'hello'
>>> st[0:5];
'hello'
>>> st[:-1];
'hello pytho'

len():求序列长度。
+:连接2个序列
*:重复序列的元素
In:判断元素是否存在序列中。
max():返回最大值。
min()换回最小值。

>>> 'e' in a;
True
>>> 'e' in b;
False
>>> max(c);
'w'
>>> min(c);
' '
>>> len(c);
11

ord函数可以得到一个字符对应的编码。

>>> help(ord);
Help on built-in function ord in module builtins:

ord(c, /)
Return the Unicode code point for a one-character string.



>>> ord(' ');
32
>>> ord('w');
119

>>> a='py';
>>> a*3;
'pypypy'
>>> help(len);
Help on built-in function len in module builtins:

len(obj, /)
    Return the number of items in a container.

>>> help(min);
Help on built-in function min in module builtins:

min(...)
    min(iterable, *[, default=obj, key=func]) -> value
    min(arg1, arg2, *args, *[, key=func]) -> value

    With a single iterable argument, return its smallest item. The
    default keyword-only argument specifies an object to return if
    the provided iterable is empty.
With two or more arguments, return the smallest argument.

字符串的格式输出。
format() 格式化函数

>>> help(format);
Help on built-in function format in module builtins:

format(value, format_spec='', /)
    Return value.__format__(format_spec)

format_spec defaults to the empty string

>>> "hello{0:>8} you are {1:6} i {2:5} you".format("dflx",'great','like');
'hello    dflx you are great  i like  you'
>>> "dflx age id {0:d}  and height {1:.2f}".format(999,1.7266);
'dflx age id 999  and height 1.73'

>>> help(str.isalpha);
Help on method_descriptor:

字符串相关函数

isalpha(...)
    S.isalpha() -> bool

    Return True if all characters in S are alphabetic
    and there is at least one character in S, False otherwise.

>>> "pythonn".isalpha();
True
>>> "py6".isalpha();
False

>>> help(str.split);
Help on method_descriptor:

split(...)
    S.split(sep=None, maxsplit=-1) -> list of strings

    Return a list of the words in S, using sep as the
    delimiter string.  If maxsplit is given, at most maxsplit
    splits are done. If sep is not specified or is None, any
    whitespace string is a separator and empty strings are
removed from the result.

>>> url="www.baidu.com";
>>> url.split(".");
['www', 'baidu', 'com']
>>> url.split(" ");
['www.baidu.com']

strip();去掉字符串二端的空格。
lstrip(); 去掉字符串左边的空格。
rstrip() 去掉右边的空格。

NameError: name 'strip' is not defined
>>> help(str.strip);
Help on method_descriptor:

strip(...)
    S.strip([chars]) -> str

    Return a copy of the string S with leading and trailing
    whitespace removed.
If chars is given and not None, remove characters in chars instead.


>>> a="   dflx  good  ";
>>> a
'   dflx  good  '
>>> a.strip();
'dflx  good'
>>> a.lstrip();
'dflx  good  '
>>> a.rstrip();
'   dflx  good'

列表,在python中用[]括号表示,在方括号里面的可以是数字,字符串,boolean等其它类型的对象。

>>> a=[2,3];
>>> type(a);
<class 'list'>

>>> df=[1,2,6,'good',"mooc",true];
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
NameError: name 'true' is not defined
>>> df=[1,2,6,'good',"mooc",True];
>>> print(df);
[1, 2, 6, 'good', 'mooc', True]
>>> df[2];
6
>>> df[2:4];
[6, 'good']
>>> df[-1];
True
>>> df[-3:-1];
['good', 'mooc']

反转

>>> df[: : -1];
[True, 'mooc', 'good', 6, 2, 1]
>>> df[: : -2];
[True, 'good', 2]
>>> list(reversed(df));
[True, 'mooc', 'good', 6, 2, 1]

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容

  • 1.列表1.1取单个值1.2切片获取子列表1.3用len()函数获取列表长度1.4列表的循环1.5列表的链接和复制...
    developerChenxi阅读 428评论 0 1
  • 〇、前言 本文共108张图,流量党请慎重! 历时1个半月,我把自己学习Python基础知识的框架详细梳理了一遍。 ...
    Raxxie阅读 18,911评论 17 410
  • 1. 数值类型 ** int 整数 **如:1,100,-8080,0,十六进制:0xff00,0xa5b4c3d...
    泊牧阅读 260评论 0 0
  • 官网 中文版本 好的网站 Content-type: text/htmlBASH Section: User ...
    不排版阅读 4,362评论 0 5
  • barrylyl阅读 337评论 0 1