python几种数据类型

流程结构:(不像C++那样,不需要要哪个括号将语句包裹起来)

1.while

2.for

3.if


4个数据类型:

a.字符串:teststr = 'Hello world'    (+)用于字符串连接 (*)用于字符串重复

b.列表:    testlist = [1,2,3,4]   用[ ]包裹,其中元素的个数和元素的值可以改变

c.元组:    testtuple = ('leonjhan',1,2,'hello')    用( )包裹,其中元素的个数和值不能改变,但是能访问。

d.字典:   testdict = {'port':'80'}      创建一个key为port,value为80的字典元素,类似Perl中的关联数组或者哈希表

你可能感兴趣的:(python,learning)