【python】python代码的缩进

未添加着色功能,这个比较麻烦,比如变量是什么色,函数是什么色,需要使用正则。

使用blog里自带的python代码着色,更改如下:print('

' + all +  '
')

效果及代码如下:

# -*- coding: utf-8 -*-  
codedic={'"':'"',"'":''','<':'<','>':'>','&':'&'}
codekey=codedic.keys()
filename=input('input file path:')
print(filename)
f=open(filename,'r')
all=''
for line in f:
    ltmp=''
    for c in line:
        if c in codekey:
            ltmp+=codedic[c]
        elif ord(c)==9:
            ltmp+='  '
        elif ord(c)==32:
            ltmp+=' '
        else:
            ltmp+=c
            
    all=all+'

'+ltmp+'

' f.close() print('
' + all +  '
')

你可能感兴趣的:(人工智能python)