标签:python3.x log hello python2 hid inpu htm 变量 one
Python是一种计算机程序设计语言。你可能已经听说过很多种流行的编程语言,比如非常难学的C语言,非常流行的Java语言
日常任务,比如自动备份;可以用来做网站;云计算最火的语言;运维人员必备语言等等等
python目前有两个版本,一个是python2.x 一个是python3.x
关于python两个版本区别此处描写的更加详细
http://www.cnblogs.com/codingmylife/archive/2010/06/06/1752807.html
1 print(‘hello world!‘)
用print()
在括号中加上字符串,就可以向屏幕上输出指定的文字。比如输出‘hello, world‘
Python提供了一个input()
,可以让用户输入字符串,并存放到一个变量里。比如输入用户的名字:
>>> name=input(‘please input your name:‘) please input your name:ly >>> name ‘ly‘
标签:python3.x log hello python2 hid inpu htm 变量 one
原文地址:http://www.cnblogs.com/lyzyy/p/7340389.html