print函數python
print()函數 (print() function)
print() function is used to print message on the screen.
print()函數用于在屏幕上打印消息。
Example:
例:
# python print() function example
# printing text
print("Hello world!")
print("Hello world!")
print("I\'m fine!")
# printing variable's values
a = 10
b = 10.23
c = "Hello"
print(a)
print(b)
print(c)
# printing text with variable's values
print("Value of a = ", a)
print("Value of b = ", b)
print("Value of c = ", c)
Output
輸出量
Hello world!Hello world!
I'm fine!
10
10.23
Hello
Value of a = 10
Value of b = 10.23
Value of c = Hello
See the output of the above program, print() function is ending with a newline and the result of the next print() function is printing in the newline (next line).
參見上面程序的輸出, print()函數以換行符結尾,下一個print()函數的結果在換行符(下一行)中打印 。
帶有結束參數的print()函數 (print() function with end parameter)
end is an optional parameter in print() function and its default value is '\n' which means print() ends with a newline. We can specify any character/string as an ending character of the print() function.
end是print()函數中的可選參數,其默認值為'\ n' ,這意味著print()以換行符結尾 。 我們可以指定任何字符/字符串作為print()函數的結束字符。
Example:
例:
# python print() function with end parameter example
# ends with a space
print("Hello friends how are you?", end = ' ')
# ends with hash ('#') character
print("I am fine!", end ='#')
print() # prints new line
# ends with nil (i.e. no end character)
print("ABC", end='')
print("PQR", end='\n') # ends with a new line
# ends with strings
print("This is line 1.", end='[END]\n')
print("This is line 2.", end='[END]\n')
print("This is line 3.", end='[END]\n')
Output
輸出量
Hello friends how are you? I am fine!#
ABCPQR
This is line 1.[END]
This is line 2.[END]
This is line 3.[END]
Recommended posts
推薦的帖子
Read input as an integer in Python
在Python中將輸入讀取為整數
Read input as a float in Python
在Python中以浮點形式讀取輸入
Parse a string to float in Python (float() function)
解析要在Python中浮動的字符串(float()函數)
How do you read from stdin in Python?
您如何從Python的stdin中讀取信息?
Asking the user for integer input in Python | Limit the user to input only integer value
要求用戶在Python中輸入整數| 限制用戶僅輸入整數值
Asking the user for input until a valid response in Python
要求用戶輸入直到Python中的有效響應
Input a number in hexadecimal format in Python
在Python中以十六進制格式輸入數字
Input a number in octal format in Python
在Python中以八進制格式輸入數字
Input a number in binary format in Python
在Python中以二進制格式輸入數字
How to get the hexadecimal value of a float number in python?
如何在python中獲取浮點數的十六進制值?
Convert an integer value to the string using str() function in Python
使用Python中的str()函數將整數值轉換為字符串
Convert a float value to the string using str() function in Python
使用Python中的str()函數將浮點值轉換為字符串
Input and Output Operations with Examples in Python
使用Python中的示例進行輸入和輸出操作
Taking multiple inputs from the user using split() method in Python
使用Python中的split()方法從用戶獲取多個輸入
Fast input / output for competitive programming in Python
快速輸入/輸出,可在Python中進行有競爭力的編程
Precision handling in Python
Python中的精確處理
翻譯自: https://www.includehelp.com/python/print-function-with-end-parameter.aspx
print函數python