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

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

时间:2018-01-27 11:31:16      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:姓名   输出   str   解析   print   语句   weight   输入   oat   

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 ))
    12

 print输入语句

input接收的值会转化为字符型,int()可将值转化为整型数据,float()将值转化为浮点型数据

# -*- coding: utf-8 -*-

name = raw_input(请输入姓名: )
print name
print type(name)

age = raw_input(请输入年龄: )
age = int(age)
print type(age)
age = age + 1
print age

weight = float(raw_input(请输入体重: ))
print weight
print type(weight)

"""运行结果"""
请输入姓名: lee
lee
<type str>
请输入年龄: 13
<type int>
14
请输入体重: 40.22
40.22
<type float>

变量解析

变量改变只改变指向地址不改变指向内容

# -*- coding: utf-8 -*-

x = 13
print x, id(x)
y = 12
print y, id(y)
x = y
print x, id(x)
z = 13
print z, id(z)

"""运行结果"""

13 73496064
12 73496076
12 73496076
13 73496064

 

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

标签:姓名   输出   str   解析   print   语句   weight   输入   oat   

原文地址:https://www.cnblogs.com/leernh/p/8355556.html

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