noticemePython编程入门——基础语法详解
一、基本概念
1.内置的变量类型:
Python是有变量类型的,而且会强制检查变量类型。内置的变量类型有如下几种:
#浮点
float_number动物世界2=basics2.3
#复数
complex_number=1+5j
heliborne
#整型
integer_number=1
#list 序列
sample_list=[2,52,36,'abc']
#嵌套
sample_nest=[(2,4,6),{5:7,9:11,'key':[2,5]},6]
festival怎么读#dictionary 字典
成都留学机构sample_dic={"key":value, 5:10}
wrecking#tuple 只读的序列
sample_tuple=(3,9,"ab")
从上面的示例可以看出,python的变量无需声明,可直接给变量赋值。
2.字符串
精度英文python中声明一个字符串通常有三种方法,''、" "和''' ''',这三种方法在声明普通字符串时的效果是完全一样的,区别在于字符串本身中存在引号的情况,举例如下:
word2010年金马奖='good'
ntence="hello world"
paragraph='''good noon:"nice to meet you."'''
python中单行注释采用#开头。
#!/usr/bin/python
# First comment
print "Hello, world!"; # cond comment
上述内容输出:hello,Python!。注释可以在语句或表达式行末。
多行注释可采用三引号,比如:
'''This is a comment.
This is a comment, too.
This is a comment, too.
I said that already.'''
转义符 '';
teach的用法自然字符串, 通过在字符串前加r或R。 如 r"this is a line with " 则 会显示,并不是换行。
python允许处理unicode字符串,加前缀u或U, 如 u"this is an unicode string"。