python交互式(input)

简介:

#交互式输出

1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env   python
# -*- coding:utf-8 -*-
name  =  input ( "what is your name?" )
password  =  input ( "Please enter password?" )
print (name, password)
 
执行输出:
what  is  your name?xcn
Please enter password?admin@ 1234
xcn admin@ 1234

#交互式格式输出

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!/usr/bin/env   python
# -*- coding:utf-8 -*-
name  =  input ( "name:" )
age  =  input ( "age:" )
job  =  input ( "job:" )
salary  =  input ( "salary:" )
info  =  '''
-----------info %s-------------
name : %s
age : %s
job : %s
salary : %s
'''  %  (name, age, job, salary)
print (info)
 
执行输出:
name:xcn
age: 20
job: 12
salary: 2000
 
- - - - - - - - - - - info xcn - - - - - - - - - - - - -
name :  20
age :  12
job :  2000
salary :  123
 
#注释:
%  相当于shell 中的$
s 相当于string 字符串

#定义打印(print)类型

1
2
3
4
#!/usr/bin/env   python
# -*- coding:utf-8 -*-
age  =  int ( input ( "age:" ))
print ( type (age),  type ( str (age)))




本文转自 baishuchao 51CTO博客,原文链接:http://blog.51cto.com/baishuchao/1932890

相关文章
|
7月前
|
数据可视化 数据挖掘 UED
Python中的数据可视化:使用Matplotlib创建交互式图表
传统的数据可视化工具通常只能生成静态图表,而在数据分析和展示中,交互式图表能够提供更丰富的用户体验和更深入的数据探索。本文将介绍如何利用Python中的Matplotlib库创建交互式图表,让数据分析变得更加生动和直观。
|
存储 Python
【python基础知识】3.input()函数
【python基础知识】3.input()函数
231 1
【python基础知识】3.input()函数
|
1月前
|
数据可视化 JavaScript 前端开发
Python中交互式Matplotlib图表
【10月更文挑战第20天】Matplotlib 是 Python 中最常用的绘图库之一,但默认生成的图表是静态的。通过结合 mpld3 库,可以轻松创建交互式图表,提升数据可视化效果。本文介绍了如何使用 mpld3 在 Python 中创建交互式散点图、折线图和直方图,并提供了详细的代码示例和安装方法。通过添加插件,可以实现缩放、平移和鼠标悬停显示数据标签等交互功能。希望本文能帮助读者掌握这一强大工具。
58 5
|
3月前
|
开发者 Python
Python 中的 Input 函数及其实现机制
Python 中的 Input 函数及其实现机制
49 0
|
3月前
|
开发者 Python
Python 中的 Input 函数及其实现机制
Python 中的 Input 函数及其实现机制
57 0
|
4月前
|
存储 安全 数据安全/隐私保护
Python的input语句
Python的input语句
|
5月前
|
存储 Python
`input()` 函数是 Python 中的一个内置函数,用于从用户那里获取输入。
`input()` 函数是 Python 中的一个内置函数,用于从用户那里获取输入。
|
5月前
|
语音技术 数据安全/隐私保护 Python
语音识别---数据输入(input语句),布尔类型和比较运算符,if语句的基本格式,Python通过空格缩进来判断代码块的归属关系,我要买票吗讲解?if_elif_else
语音识别---数据输入(input语句),布尔类型和比较运算符,if语句的基本格式,Python通过空格缩进来判断代码块的归属关系,我要买票吗讲解?if_elif_else
|
7月前
|
安全 Python
Python中input()函数
【4月更文挑战第3天】,`input()` 是 Python 内建函数,用于从控制台获取用户输入。它会暂停程序并显示提示信息(如果提供),用户输入的内容被视为字符串返回。基本语法是 `variable = input(prompt)`,其中 `prompt` 是可选提示信息。例如,`name = input("请输入您的姓名:")` 后,程序会等待用户输入,然后将输入的字符串赋值给 `name`。注意 `input()` 总是返回字符串,需手动转换为其他类型,且避免使用 `eval()` 处理用户输入以防止安全风险。
132 2
Python中input()函数
|
7月前
|
Python
如何使用Python的Plotly库创建交互式图表?
Plotly是Python的交互式图表库,支持多种图表类型,如折线图、散点图、柱状图。使用步骤包括安装库、导入模块、准备数据、创建图表对象、添加数据和设置属性,最后显示或保存图表。
72 6