码迷,mamicode.com
首页 > 其他好文 > 详细

2.Text input and output

时间:2016-09-05 12:08:23      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:

文本的输入和输出
输出
要在屏幕上输出文本你需要这样一行代码:
print("Hello World")
如果输出多行,要添加符号“\n”:
print("Hello World\nThis is a message")
输出值的话:
x = 3
print(x)
输出多行数值:
x = 2
y = 3
print(x, ‘ ‘, y)
 
输入
得到一个文本值(字符?):
name = input("Enter a name: ")
得到一个整数:
x = int(input("What is x? "))
得到一个小数:
x = float(input("Write a number"))
 

2.Text input and output

标签:

原文地址:http://www.cnblogs.com/bingyang-py/p/5841728.html

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