python打印多个变量_在Python中打印多个变量

python打印多个变量

Like other programming languages, In python also, we can define and print the multiple variables. Here, we see how can we print the single and multiple variables using the print() function?

像其他编程语言一样,在python中,我们也可以定义和打印多个变量 。 在这里,我们看到如何使用print()函数打印单个和多个变量?

In Python, single variable can be printed like this,

在Python中,可以这样打印单个变量,

print(variable)

Example:

例:

# Python program to print single variable
name = "Mike"
age = 21
country = "USA"
# printing variables one by one
print(name)
print(age)
print(country)
print() # prints a newline
# printing variables one by one
# with messages
print("Name:", name)
print("Age:", age)
print("Country:", country)

Output:

输出:

Mike
21
USA
Name: Mike
Age: 21
Country: USA

打印多个变量 (Printing multiple variables)

There are following methods to print multiple variables,

有以下方法可以打印多个变量,

  • Method 1: Passing multiple variables as arguments separating them by commas

    方法1 :传递多个变量作为以逗号分隔它们的参数

  • Method 2: Using format() method with curly braces ({})

    方法2 :使用带有大括号({})的format()方法

  • Method 3: Using format() method with numbers in curly braces ({0})

    方法3 :将format()方法与大括号({0})中的数字一起使用

  • Method 4: Using format() method with explicit name in curly braces ({v})

    方法4 :在大括号({v})中使用具有显式名称的format()方法

  • Method 5: Using string concatenation

    方法5 :使用字符串连接

Let's understand each method in the details.

让我们详细了解每种方法。

Method 1:

方法1:

To print multiple variables using the print() function, we need to provide the variable names as arguments separated by the commas.

要使用print()函数打印多个变量,我们需要提供变量名称作为用逗号分隔的参数。

Note: print() function prints space after the value of each variable, space is the default value of sep parameter – which is an optional parameter in print() function, by using this parameter, we can specify the separator value.

注意: print()函数在每个变量的值之后打印空格,space是sep参数的默认值–这是print()函数中的可选参数,通过使用此参数,我们可以指定分隔符值。

Syntax:

句法:

print(variable1, varaible2, variable3, ...)

Example:

例:

# Python program to print multiple variables
name = "Mike"
age = 21
country = "USA"
# printing variables one by one
print("Printing normally...")
print(name, age, country)
print() # prints a new line
# Printing with comma seprator
print("Printing with comma seprator...")
print(name, age, country, sep=',')
print() # prints a new line
# printing variables with messages
print("Printing with messages...")
print("Name:", name, "Age:", age, "Country:", country)

Output:

输出:

Printing normally...
Mike 21 USA
Printing with comma seprator...
Mike,21,USA
Printing with messages...
Name: Mike Age: 21 Country: USA

Method 2:

方法2:

By using the new-style string formatting (format() method), we can also print the multiple variables. Here, we have to specify the curly braces ({}) where we have to print the values and in the format() method, provide the multiple variables separated by the commas.

通过使用新的字符串格式设置( format()方法),我们还可以打印多个变量。 在这里,我们必须指定花括号( {}) ,在其中我们必须打印值,并在format()方法中提供多个用逗号分隔的变量。

Syntax:

句法:

print("{} {} {}".format(variable1, variable2, variable2)

Example:

例:

# Python program to print multiple variables
# using format() method
name = "Mike"
age = 21
country = "USA"
print("{} {} {}".format(name, age, country))
print("Name: {}, Age: {}, Country: {}".format(name, age, country))

Output:

输出:

Mike 21 USA
Name: Mike, Age: 21, Country: USA

Method 3:

方法3:

By using the new-style string formatting with numbers (format() method), we can also print the multiple variables. This is similar to method 2 but here we can use the numbers inside the curly braces ({0}), it will help for reordering the values.

通过使用带数字新型字符串格式设置( format()方法),我们还可以打印多个变量。 这类似于方法2,但是在这里我们可以使用花括号( {0} )中的数字,这将有助于重新排列值。

Note: Number 0 represents the first variable in format() method, 1 represents the second, and so on.

注意:数字0代表format()方法中的第一个变量,数字1代表第二个变量,依此类推。

Syntax:

句法:

print("{0} {1} {2}".format(variable1, variable2, variable2)

Example:

例:

# Python program to print multiple variables
# using format() method with numbers
name = "Mike"
age = 21
country = "USA"
print("{0} {1} {2}".format(name, age, country))
print("Name: {0}, Age: {1}, Country: {2}".format(name, age, country))
print("Country: {2}, Name: {0}, Age: {1}".format(name, age, country))
# printing all values 2-2 times
print("{0} {0} {1} {1} {2} {2}".format(name, age, country))

Output:

输出:

Mike 21 USA
Name: Mike, Age: 21, Country: USA
Country: USA, Name: Mike, Age: 21
Mike Mike 21 21 USA USA

Method 4:

方法4:

By using the new-style string formatting with explicit names (format() method), we can also print the multiple variables. This is similar to method 3 but here we can use the explicit names inside the curly braces ({n}), it will help for remembering the order and variable names.

通过使用带有显式名称新型字符串格式设置( format()方法),我们还可以打印多个变量。 这类似于方法3,但在这里我们可以在花括号( {n} )中使用显式名称,这将有助于记住顺序和变量名称。

Syntax:

句法:

print("{v1} {v2} {v3}".format(v1=variable1, v2=variable2, v3=variable2)

Example:

例:

# Python program to print multiple variables
# using format() method with explicit names
name = "Mike"
age = 21
country = "USA"
print("{n} {a} {c}".format(n=name, a=age, c=country))
print("Name: {n}, Age: {a}, Country: {c}".format(n=name, a=age, c=country))
print("Country: {c}, Name: {n}, Age: {a}".format(n=name, a=age, c=country))
# printing all values 2-2 times
print("{n} {n} {a} {a} {c} {c}".format(n=name, a=age, c=country))

Output:

输出:

Mike 21 USA
Name: Mike, Age: 21, Country: USA
Country: USA, Name: Mike, Age: 21
Mike Mike 21 21 USA USA

Method 5:

方法5:

We can print multiple variables by concatenating them as a string.

我们可以通过将多个变量串联为字符串来打印多个变量。

Syntax:

句法:

print(str(variable1) + str(variable2) + str(variable3))

Note:

注意:

  • If we want to display any message or separator, we can also concatenate them with the variables.

    如果要显示任何消息或分隔符,也可以将它们与变量连接起来。

  • If a variable is a string, then there is no need to use str().

    如果变量是字符串,则无需使用str()

Example:

例:

# Python program to print multiple variables
# using string concatenation
name = "Mike"
age = 21
country = "USA"
print("Without separator...")
print(name + str(age) + country)
print("Separating by commas...")
print(name + "," + str(age) + "," + country)
print("Printing with messages...")
print("Name: " + name + " Age: " + str(age) + " Country: " + country)

Output:

输出:

Without separator...
Mike21USA
Separating by commas...
Mike,21,USA
Printing with messages...
Name: Mike Age: 21 Country: USA

翻译自: https://www.includehelp.com/python/print-multiple-variables.aspx

python打印多个变量

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543921.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

js之ActiveX控件使用说明 new ActiveXObject()

什么是 ActiveX 控件? ActiveX 控件广泛用于 Internet。它们可以通过提供视频、动画内容等来增加浏览的乐趣。不过,这些程序可能出问题或者向您提供不需要的内容。在某些情况下,这些程序可被 用来以您不允许的方式从计算机收集信息、破坏您的…

vim中的jk为什么是上下_JK轮胎的完整形式是什么?

vim中的jk为什么是上下JK轮胎:Juggilal Kamlapat Ji轮胎 (JK Tyres: Juggilal Kamlapat Ji Tyres) JK Tyre and Industries is an abbreviation of Juggilal Kamlapat Ji Tyres & Industries Ltd. It is an Automobile Tyre, Tubes and Flaps manufacturing com…

【C语言】第二章 类型、运算符和表达式

为什么80%的码农都做不了架构师?>>> 变量和常量是程序处理的两种基本数据对象。 声明语句说明变量的名字及类型,也可以指定变量的初值。 运算符指定要进行的操作。 表达式则把变量与常量组合起来生成新的值。 对象的类型决定该对象可取值的集…

移动最小二乘_最小移动以形成弦

移动最小二乘Problem statement: 问题陈述: Given a string S, write a program to check if it is possible to construct the given string S by performing any of the below operations any number of times. In each step, you can: 给定字符串S ,…

转: 加快Android编译速度

转: http://timeszoro.xyz/2015/11/25/%E5%8A%A0%E5%BF%ABandroid%E7%BC%96%E8%AF%91%E9%80%9F%E5%BA%A6/ 加快Android编译速度 发表于 2015-11-25 | 对于Android开发者而言,随着工程不断的壮大,Android项目的编译时间也逐渐变长&#xff…

ipv6寻址_什么是IPV4寻址?

ipv6寻址IPV4寻址简介 (Introduction to IPV4 Addressing ) Internet protocol version 4 in any network, is a standard protocol for assigning a logical address (IP address) to hosts. You are currently using the same protocol. This protocol is capable of providi…

1593: [Usaco2008 Feb]Hotel 旅馆

1593: [Usaco2008 Feb]Hotel 旅馆 Time Limit: 10 Sec Memory Limit: 64 MBSubmit: 489 Solved: 272[Submit][Status][Discuss]Description 奶牛们最近的旅游计划,是到苏必利尔湖畔,享受那里的湖光山色,以及明媚的阳光。作为整个旅游的策划…

最长递增子序列 子串_最长递增子序列

最长递增子序列 子串Description: 描述: This is one of the most popular dynamic programming problems often used as building block to solve other problems. 这是最流行的动态编程问题之一,通常用作解决其他问题的基础。 Problem statement: 问…

beta版本项目冲刺

项目冲刺第一天项目冲刺第二天项目冲刺第三天项目冲刺第四天项目冲刺第五天项目冲刺第六天项目冲刺第七天转载于:https://www.cnblogs.com/malinlin/p/5006041.html

mkdir 函数_PHP mkdir()函数与示例

mkdir 函数PHP mkdir()函数 (PHP mkdir() function) The full form of mkdir is "Make Directory", the function mkdir() is used to create a directory. mkdir的完整格式为“ Make Directory” , 函数mkdir()用于创建目录。 Syntax: 句法&#xff1a…

WPF自定义控件与样式(5)-Calendar/DatePicker日期控件自定义样式及扩展

原文:WPF自定义控件与样式(5)-Calendar/DatePicker日期控件自定义样式及扩展一.前言 申明:WPF自定义控件与样式是一个系列文章,前后是有些关联的,但大多是按照由简到繁的顺序逐步发布的等,若有不明白的地方可以参考本…

Cookie介绍及使用

Cookie学习: 作用:解决了发送的不同请求的数据共享问题 使用: Cookie的创建和存储//创建Cookie对象Cookie cnew Cookie("mouse","");//设置cookie(可选)//设置有效期c.setMaxAge(int seconds);//设置有效路径c.setPath(String uri);//响应Cookie信息给客…

acm模式_ACM的完整形式是什么?

acm模式ACM:计算机协会 (ACM: Association for Computing Machinery) ACM is an abbreviation of the "Association for Computing Machinery (ACM)". ACM是“计算机协会(ACM)”的缩写 。 It is an international academic association or scholarly soc…

c语言:用%f输出实数,只能得到6位小数及求float型数据的有效位数

1.用%f输出实数&#xff0c;只能得到6位小数。程序&#xff1a;#include<stdio.h>int main(){double a 1.0;printf("%f\n",a/3);return 0;}结果&#xff1a;0.333333请按任意键继续. . .2.float型数据的有效位数。程序&#xff1a;#include<stdio.h>int…

二分法查找算法

二分法查找索引值 二分法查找算法步骤&#xff1a;(前提&#xff1a;查询数组为一组有序数)1、定义低位和高位指针low&#xff0c;high&#xff1b;2、通过判断low和high的所指的数值中间值mid来判断关键值是在高位段还是低位段。例题解析&#xff1a; 查找5的索引值 sum {1,2…

bba70_BBA的完整形式是什么?

bba70BBA&#xff1a;工商管理学士 (BBA: Bachelor of Business Administration) BBA is an abbreviation of Bachelor of Business Administration also spelled as B.B.A. In the field of Business Administration, it is an undergraduate degree program. This is a degre…

Qt和纹理

2019独角兽企业重金招聘Python工程师标准>>> test 转载于:https://my.oschina.net/assange/blog/537631

计算机图形学图形旋转_计算机图形学翻译

计算机图形学图形旋转计算机图形学| 翻译 (Computer Graphics | Translations) Transformation techniques mean to modify the current shape or object in a particular manner. Changing of an object after creation, in terms of position or even size is known as trans…

AP 1532E register   Cisco 2504 AP注册WLC

客户的环境是&#xff1a;WLC是 2504 的AP的型号是 1532E的首先要是版本匹配&#xff0c;那么我们就要查一个兼容性列表&#xff0c;请看附件同时&#xff0c;我们要把WLC的版本升级到AIR-CT2500-K9-8-1-111-0.aes 这个版本&#xff1b;同时由于瘦AP 1532E的版本是 Cisco IOS S…

Python 位运算、判断、循环

位运算 1、原码、反码和补码 计算机内部使用补码来表示 2、按位运算实现快速计算 (1) 通过^(异或)快速交换两个整数。 a^b b^a a^b (2) 通过a&(-a)快速获取a的最后为1 位置的整数。 00 00 01 01 -> 5 & 11 11 10 11 -> -5 - - - 00 00 00 01-> 14、利用位运…