1、print语句:
'hello world!'를 인쇄하세요.
"hello world!"를 인쇄하세요.
'hello %s!'%('world') 인쇄
2、流程控조제:
if:
a = 1;b = 2
if (a == b):
print 'a = b'
elif (a > b):
print 'a > b'
elif (a < b):
print 'a < b'
else:
'$%$#$%'
각각에 대해 인쇄:
array = [1,2,3,4]
total = 0
i의 경우 배열:
합계 +=i
전체 인쇄
while:
while 1 > 2
통과
3、数据类型:
链表:array=[1,2,3,4] 배열 인쇄 결과:[1,2,3,4]
散列:
print set ([1,2,3,4,4]) 결과:set([1,2,3,4])
set1 = set([1,2,3,4,5]) set2 = set([1,2,3,4,6])
set1-set2 결과 인쇄:set([5])
set1&set2 결과 인쇄:set([1,2,3,4])
print set1|set2 결과:set([1,2,3,4,5,6])
字典:
dict = {}
dict['zs'] = 12
dict['ls'] = 25
dict['ww'] = 36
dict.keys()의 키에 대해:
print '%s%s'%(key,dict[key]) 결과:ww36 ls25 zs12
4、文件读写:
f = file("D:worka.txt","r")
print f.read()
f.close() #文件流需关闭
열린 상태("D:worka.txt","r") as f:
print f.read()
열린 상태("D:workb.txt"," w")를 f로:
f.write("나는 괜찮아!")