python学习---语法

python script常见格式:

import sys    #导入sys模块

from util import * #从util模块导入全部需要的变量,函数等

module=['webview','content_shell','chrome']   #列表数据结构

number=(1,2,5,6,9) #元祖数据结构,不可改变

原文地址:https://www.cnblogs.com/hanying/p/3792601.html