码迷,mamicode.com
首页 > 编程语言 > 详细

Python输入输出

时间:2016-07-03 23:31:32      阅读:237      评论:0      收藏:0      [点我收藏+]

标签:python   print   input   

1        第一个Python

[root@daidai python]# cat calc.py

print(100+200+300)

[root@daidai python]# python calc.py

600

 

[root@daidai python]# cat hello.py

print(‘hello,world‘)

[root@daidai python]# python hello.py

hello,world

 

[root@daidai python]# cat hello.py

#!/usr/bin/python

print(‘hello,world‘)

[root@daidai python]# chmod +x hello.py

[root@daidai python]# ./hello.py

hello,world

1.1   输出

>>> print(‘hello,world‘)

hello,world

>>> print(‘hello,‘,‘world‘)

hello, world

print()会依次打印每个字符串,遇到逗号“,”会输出一个空格

>>> print(‘100+200=‘,100+200)

100+200= 300

1.2   输入

>>> name=input()

daidai

>>> name

‘daidai‘

>>> print(name)

daidai

>>> print(‘hello,‘,name)

hello, daidai

>>> name=input(‘Pleaseinput your name: ‘)  --input函数允许用户输入提示信息

Please input your name: daidai

>>> print(‘hello,‘,name)

hello, daidai

>>> name

‘daidai‘


本文出自 “90SirDB” 博客,请务必保留此出处http://90sirdb.blog.51cto.com/8713279/1795428

Python输入输出

标签:python   print   input   

原文地址:http://90sirdb.blog.51cto.com/8713279/1795428

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!