摘要:
pycharm 1、模板 file->setting->Editor->file and code template->python script->右上方 #!/usr/bin/env python #-*- coding:utf-8 -*- OK 2、文字大小 file->settings->e 阅读全文
摘要:
一、变量 1、变量名: 数字,字母,下划线 alex1=123 sb=“alex” a_lex=“sb” 不能以数字开头 lalex 变量名不是python内部的关键字 {‘and’,'as','assert','break','class',continue','def','elif','exce 阅读全文
摘要:
一、第一句Python代码 在/home/dev/目录下创建hello/py文件,内容如下: 执行hello.py文件,即:python /home/dev/hello.py 二、解释器 上一步中执行python /home/dev/hello.py时,明确指出hello.py脚本是由python解 阅读全文