Python输入/输出语句

Python输出语句print函数

  • print()函数基本使用

    打印整形数据

    打印浮点型数据

    打印字符型数据

>>> print(12)
12
>>> print(12.5)
12.5
>>> print(‘B‘)
B
>>> print(‘WWW.baidu.com‘)
WWW.baidu.com
>>> x=12
>>> print(12)
12
>>> y=12.88
>>> print(y)
12.88
>>> z=‘www.bling.com‘
>>> print(z)
www.bling.com
>>> print z
www.bling.com
>>> print x,y,z
12 12.88 www.bling.com
>>> print(z,y,z)
(‘www.bling.com‘, 12.88, ‘www.bling.com‘)

  • print格式化输出

  print(format(val,fomat_modifier))

    var:值

    fomat_modifier:格式字

  print(12.34567,‘m.nf‘)

    m:表示占位数量(m),m<有效位时,左对齐;m>有效位时,右对齐

    n:表示精度(n)

  print x,y  ‘逗号‘连接输出

>>> print(format(12.345678,‘6.2f‘))
 12.35
>>> print(format(12.345678,‘6.3f‘))
12.346
>>> print(format(12.345678,‘6.9f‘))
12.345678000
>>> print(format(12.345678,‘6.0f‘))
    12
>>> print(format(12.345678,‘6.3f‘))
12.346
>>> print(format(12.345678,‘6.2f‘))
 12.35
>>> print(format(12.345678,‘9.2f‘))
    12.35
>>> print(format(12.345678,‘3.2f‘))
12.35
>>> print(format(12.345678,‘5.2f‘))
12.35

  print()格式化输出format

    print(format(val,fomat_modifier))

    print(format(0.3456,‘.2%‘))

>>> print(format(0.3456,‘.2%‘))
34.56%
>>> print(format(0.3456,‘.3%‘))
34.560%
>>> print(format(0.3456,‘.6%‘))
34.560000%
>>> print(format(0.3456,‘6.3%‘))
34.560%
>>> print(format(0.3456,‘6.1%‘))
 34.6%
  • Python输入函数

  re = raw_input(prompt)

  prompt:提示字符,从键盘读取数据

  re:返回值,返回字符串

  类型转换:int()(转为整形)、float()(浮点型)

>>> re = raw_input()
www.bling.com
>>> print(re)
www.bling.com
>>> type(re)
<type ‘str‘>
>>> age = raw_input(‘your age :‘)
your age :22
>>> age = age +1

Traceback (most recent call last):
  File "<pyshell#11>", line 1, in <module>
    age = age +1
TypeError: cannot concatenate ‘str‘ and ‘int‘ objects
>>> age = int(age)
>>> age
22
>>> age = age +1
>>> age
23
>>> type(age)
<type ‘int‘>
>>> age = int(raw_input(‘PLZ input your age :‘))
PLZ input your age :23
>>> type(age)
<type ‘int‘>
>>> f1 = float(‘12.35‘)
>>> type(f1)
<type ‘float‘>
>>> weight = float(raw_input(‘Plz input your weight :‘))
Plz input your weight :70.01
>>> print(weight)
70.01
>>> type(weight)
<type ‘float‘>
>>> 

Python输入/输出语句

时间: 2024-12-30 03:16:27

Python输入/输出语句的相关文章

Python基本输出语句/输入语句/变量解析

print格式化输出 # -*- coding: utf-8 -*- # print (format(val, 'm,n')) # val:值 format_modifier:输出占位m,精度n print (format(12.3456,'6.2f' )) 12.35 print (format(12.3456,'6.3f' )) 12.346 print (format(12.3456,'6.6f' )) 12.345600 print (format(12.3456,'6.0f' )) 1

Python输入/输出

1.在python2.x中raw_input( )和input( ),两个函数都存在,其中区别为 raw_input( )---将所有输入作为字符串看待,返回字符串类型 input( )-----只能接收"数字"的输入,在对待纯数字输入时具有自己的特性,它返回所输入的数字的类型( int,float) 2.在python3.x中raw_input( )和input( )进行了整合,去除了raw_input( ),仅保留了input( )函数,其接收任意性输入,将所有输入默认为字符串处理

9、流类库与输入/输出

就像C语言一样,c++语言中也没有输入/输出语句.但c++编译系统带有一个面向对象的输入/输出软件爱你包,它就是I/O流类库. 1.I/O流的概念及流类库结构 I/O流类库是C语言中I/O函数在面向对象的程序设计方法中的一个替换产品. 当程序与外界环境进行信息交换时,存在着两个对象,一个是程序中的对象,另一个是文件对象. 流是一种抽象,它负责在数据的生产者和数据的消费者之间建立联系,并管理数据的流动.程序建立一个流对象,并指定这个流对象与某个文件对象建立连接,程序操作流对象,流对象通过文件系统对

Python输入和输出

在很多时候,你会想要让你的程序与用户(可能是你自己)交互.你会从用户那里得到输入,然后打印一些结果.我们可以分别使用raw_input和print语句来完成这些功能.对于输出,你也可以使用多种多样的str(字符串)类.例如,你能够使用rjust方法来得到一个按一定宽度右对齐的字符串.利用help(str)获得更多详情.另一个常用的输入/输出类型是处理文件.创建.读和写文件的能力是许多程序所必需的,我们将会在这章探索如何实现这些功能. 1.使用文件 #!/usr/bin/python # File

python基础(文件输入/输出 内建类型 字典操作使用方法)

本文主要介绍了python基础入门,包括文件输入/输出.内建类型.字典操作等使用方法 一.变量和表达式 代码如下: >>> 1 + 1 2>>> print 'hello world' hello world>>> x = 1               >>> y = 2>>> x + y3 Python是强类型语言,无法根据上下文自动解析转换成合适的类型. Python是一种动态语言,在程序运行过程中,同一个变量

python 中简单的输出语句

1 python 中简单的输出语句 #coding:utf-8#输出的是整数,得到的也是整数,用raw_inputusername=raw_input('请输入用户名:')#输出的是整数或者字符串,得到的只是字符串#在终端输入时:python空格.py文件拖入pwd=raw_input('请输入密码:')#两个条件同时成立才执行if username=='lily'and pwd=='abc':print 'login'else:print 'notlogin' 2 利用python定义简单的函

Python的输出输入和注释

内容: 1:Python的输出 2:Python的输入 3:python的注释 Python的输出和注释 1 print 'hello,world' #hello,world 2 print 'Hello, World', 'Python'# Hello,world Python 3 print 100 + 200 #300 Python的基本输入 >>> name = raw_input("Please input your name: ") Please inpu

python输入与输出

python输出 python3中的输出 python3中的输出使用函数print(),示例如下: >>> print('hello kitty') print()也可接受多个参数,使用逗号隔开: >>> print('hello','kitty') hello kitty 可以看到字符串合并输出后,中间会模式使用逗号隔开~ print函数除了可以接收字符串外,也可以接收其他的数据类型 >>> print(1) # 接收整数 1 >>>

Python for循环语句

来自:http://www.runoob.com/python/python-for-loop.html Python for 循环语句 Python for循环可以遍历任何序列的项目,如一个列表或者一个字符串. 语法: for循环的语法格式如下: for iterating_var in sequence: statements(s) 流程图: 实例: 实例 #!/usr/bin/python # -*- coding: UTF-8 -*- for letter in 'Python': #