标签:code img 版本 如何 tps you ctrl script 函数
环境安装备注: 在安装时候可以通过勾选添加系统环境变量来自动添加系统环境变量,如下图
第一次使用的时候,我们可以通过File->setting->Editot->Code Style->File and Code Templates ->Python Script 来设置成如下的抬头
#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Time : ${DATE} ${TIME}
# @Author : Graped
# -*- coding:utf-8 -*-
# @Time : 2017/4/8 17:40
# @Author : Graped
name = raw_input("print input your name: ") # raw_input 此函数用来和用户进行参数交互
print("hello " + name)
linux系统
chmod + x test.py
./test.py
python test.py
cmd中:
python test.py
直接点击运行
Pycharm的调试模式:
标签:code img 版本 如何 tps you ctrl script 函数
原文地址:http://blog.51cto.com/graped/2315699