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

Python中的输入和输出

时间:2017-05-29 21:41:31      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:浮点数   用户   int   python   内置函数   input   word   utf-8   格式化输出   

输入

input()

技术分享

 

#!/usr/bin/env python
#-*- coding:utf-8 -*-

username=input(‘请输入用户名: ‘)

input()内置函数,返回字符串类型。如果输入的内容要作为其他类型使用,必须进行转换,如要转换为int,就要 int(要转换的标识符)。

 

输出 print()

技术分享

格式化输出

username=‘admin‘
password=‘123456‘

print(‘用户名为 %s ,密码为 %s‘ %(username,password))

%d整数   %f 浮点数   

常用的格式化:

技术分享

 

Python中的输入和输出

标签:浮点数   用户   int   python   内置函数   input   word   utf-8   格式化输出   

原文地址:http://www.cnblogs.com/PythonInMyLife/p/6919012.html

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