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