#Python3中Print 语句

Print 语句

1.Python中可以直接指定输出文字,例如:
print输出的数据为str类型

print(“hello world”)
print(s)
#(输出)hello world

s = input("请你输入:")
print(s,type(s))
#(输出)	请你输入:12
		12 

注意:
print语句也可以跟上多个字符串,用逗号“,”隔开,就可以连成一串输出,例如:

print("Happy birthday to the People's Republic of China!",
"中华人民共和国,生日快乐!'')
#(输出)Happy birthday to the People's Republic of China! 中华人民共和国,生日快乐!

2.print也可以打印整数和计算结果:

print(123 + 123)
#(输出)246
print(123456)
#(输出)123456

3.print也可以进行字符串中的连接:

print("asd"+"asd")
#(输出)asdasd

4.print输出方式:

print("hello world")
print("hello","world")
print("hello"+" world")
#(输出结果都为 hello world

5.print连续输出
print(str,end=" “),即将print内置函数默认end =” \n" 更换成了空格,从而使原来默认的print 一结束,马上换行处理 给替代成 空格一个 继续输出

print("hello world",end=" ")
print("hello","world",end=" ")
print("hello"+" world")
#(输出)hello world hello world hello world

你可能感兴趣的:(Python)