#!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : ${DATE} ${TIME} # @Author : yshan # @File : ${NAME}.py
4、PyCharm运行
name = raw_input("please input your name: ") print(‘hello ‘ + name)
D:\Python27\python.exe C:/Users/Yshan/PycharmProjects/test/bbb.py please input your name: tet hello tet Process finished with exit code 0
原文:http://www.cnblogs.com/yshan13/p/7684840.html