Hướng dẫn how do you print output function in python? - làm thế nào để bạn in chức năng đầu ra trong python?

Hàm python print () in thông báo lên màn hình hoặc bất kỳ thiết bị đầu ra tiêu chuẩn nào khác.prints the message to the screen or any other standard output device.

Syntax: 

print(value(s), sep= ' ', end = '\n', file=file, flush=flush)

Parameters:  

  • Giá trị (s): Bất kỳ giá trị nào, và bao nhiêu tùy thích. Sẽ được chuyển đổi thành một chuỗi trước khi inAny value, and as many as you like. Will be converted to a string before printed
  • SEP = Voi phân tách, (tùy chọn) Chỉ định cách tách các đối tượng, nếu có nhiều hơn một.default: Hồi ‘(Optional) Specify how to separate the objects, if there is more than one.Default :’ ‘
  • end = kết thúc(Optional) Specify what to print at the end.Default : ‘\n’
  • Tệp: (Tùy chọn) Một đối tượng có phương thức ghi. Mặc định: sys.stdout(Optional) An object with a write method. Default :sys.stdout
  • Flush: (Tùy chọn) Một boolean, chỉ định nếu đầu ra được xả (đúng) hoặc đệm (sai). Mặc định: Sai(Optional) A Boolean, specifying if the output is flushed (True) or buffered (False). Default: False

Loại trả về: Nó trả lại đầu ra cho màn hình.It returns output to the screen.

Mặc dù không cần thiết phải truyền các đối số trong hàm in (), nhưng nó yêu cầu một dấu ngoặc đơn trống ở cuối để bảo Python thực thi chức năng thay vì gọi nó theo tên. Bây giờ, hãy để khám phá các đối số tùy chọn có thể được sử dụng với hàm in ().

Chuỗi chữ

Chuỗi chữ trong câu lệnh in Python, chủ yếu được sử dụng để định dạng hoặc thiết kế cách một chuỗi cụ thể xuất hiện khi được in bằng hàm in ().

  • \ n: Chuỗi này theo nghĩa đen này được sử dụng để thêm một dòng trống mới trong khi in câu lệnh. This string literal is used to add a new blank line while printing a statement.
  • Một số người khác: Một trích dẫn trống (Hồi) được sử dụng để in một dòng trống. An empty quote (“”) is used to print an empty line.

Example:

Python3

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
1
GeeksforGeeks 
 is best for DSA Content.
2

Output:

GeeksforGeeks 
 is best for DSA Content.

kết thúc = tuyên bố

Từ khóa kết thúc được sử dụng để chỉ định nội dung sẽ được in ở cuối hàm thực thi in (). Theo mặc định, nó được đặt thành Hồi \ n, dẫn đến việc thay đổi dòng sau khi thực hiện câu lệnh in ().

Ví dụ: python print () không có dòng mớiPython print() without new line

Python3

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
5
GeeksforGeeks 
 is best for DSA Content.
2

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
5
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
0
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
22

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
6
GeeksforGeeks 
 is best for DSA Content.
2

Output:

GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG

Tranh cãi tuôn ra

I/OS trong Python thường được đệm, có nghĩa là chúng được sử dụng trong các khối. Đây là nơi Flush xuất hiện vì nó giúp người dùng quyết định xem họ có cần nội dung bằng văn bản hay không. Theo mặc định, nó được đặt thành sai. Nếu nó được đặt thành True, đầu ra sẽ được viết dưới dạng một chuỗi các ký tự hết lần này đến lần khác. Quá trình này chậm đơn giản vì nó dễ dàng viết bằng các khối hơn là viết một nhân vật tại một thời điểm. Để hiểu trường hợp sử dụng của đối số tuôn ra trong hàm in (), hãy để lấy một ví dụ.

Example:

Hãy tưởng tượng bạn đang xây dựng một bộ đếm thời gian đếm ngược, nối thời gian còn lại cho cùng một dòng mỗi giây. Nó sẽ trông giống như dưới đây:

3>>>2>>>1>>>Start

Mã ban đầu cho điều này sẽ trông giống như dưới đây như sau: & nbsp;

Python3

GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
8
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
9

3>>>2>>>1>>>Start
0____21
3>>>2>>>1>>>Start
2

3>>>2>>>1>>>Start
3
3>>>2>>>1>>>Start
4
3>>>2>>>1>>>Start
5

12-12-2022
3
12-12-2022
4
12-12-2022
5
12-12-2022
6
12-12-2022
7

12-12-2022
8print
  File "0b97e8c5-bacf-4e89-9ea3-c5510b916cdb.py", line 1
    print(10, 20, sep=' - ', 30)
                            ^
SyntaxError: positional argument follows keyword argument
0
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
  File "0b97e8c5-bacf-4e89-9ea3-c5510b916cdb.py", line 1
    print(10, 20, sep=' - ', 30)
                            ^
SyntaxError: positional argument follows keyword argument
2
GeeksforGeeks 
 is best for DSA Content.
2

12-12-2022
8
  File "0b97e8c5-bacf-4e89-9ea3-c5510b916cdb.py", line 1
    print(10, 20, sep=' - ', 30)
                            ^
SyntaxError: positional argument follows keyword argument
5
12-12-2022
1
GeeksforGeeks 
 is best for DSA Content.
2

12-12-2022
3
  File "0b97e8c5-bacf-4e89-9ea3-c5510b916cdb.py", line 1
    print(10, 20, sep=' - ', 30)
                            ^
SyntaxError: positional argument follows keyword argument
9
12-12-2022
7

Các

Vì vậy, mã ở trên thêm văn bản mà không có dòng mới và sau đó ngủ trong một giây sau mỗi lần bổ sung văn bản. Khi kết thúc đếm ngược, nó in bắt đầu và chấm dứt dòng. Nếu bạn chạy mã như nó là, nó chờ 3 giây và đột ngột in toàn bộ văn bản cùng một lúc. Đây là một sự lãng phí 3 giây gây ra do bộ đệm của đoạn văn bản như hình dưới đây:

Hướng dẫn how do you print output function in python? - làm thế nào để bạn in chức năng đầu ra trong python?

Mặc dù bộ đệm phục vụ một mục đích, nó có thể dẫn đến các hiệu ứng không mong muốn như hình trên. Để chống lại cùng một vấn đề, đối số Flush được sử dụng với hàm in (). Bây giờ, đặt đối số Flush là đúng và một lần nữa xem kết quả.

Python3

GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
8
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
9

3>>>2>>>1>>>Start
0____21
3>>>2>>>1>>>Start
2

3>>>2>>>1>>>Start
3
3>>>2>>>1>>>Start
4
3>>>2>>>1>>>Start
5

12-12-2022
3
12-12-2022
4
12-12-2022
5
12-12-2022
6
12-12-2022
7

Các

12-12-2022
8
  File "0b97e8c5-bacf-4e89-9ea3-c5510b916cdb.py", line 1
    print(10, 20, sep=' - ', 30)
                            ^
SyntaxError: positional argument follows keyword argument
5
12-12-2022
1
GeeksforGeeks 
 is best for DSA Content.
2

12-12-2022
3
  File "0b97e8c5-bacf-4e89-9ea3-c5510b916cdb.py", line 1
    print(10, 20, sep=' - ', 30)
                            ^
SyntaxError: positional argument follows keyword argument
9
12-12-2022
7

12-12-2022
8print
GeeksforGeeks 
 is best for DSA Content.
0
'Hello Geeks!!\n'
4
GeeksforGeeks 
 is best for DSA Content.
2

Output:

https://media.geeksforgeeks.org/wp-content/uploads/20201222163647/Untitled26---Jupyter-Notebook---Google-Chrome-2020-12-22-16-33-02.mp4

Vì vậy, mã ở trên thêm văn bản mà không có dòng mới và sau đó ngủ trong một giây sau mỗi lần bổ sung văn bản. Khi kết thúc đếm ngược, nó in bắt đầu và chấm dứt dòng. Nếu bạn chạy mã như nó là, nó chờ 3 giây và đột ngột in toàn bộ văn bản cùng một lúc. Đây là một sự lãng phí 3 giây gây ra do bộ đệm của đoạn văn bản như hình dưới đây:

Mặc dù bộ đệm phục vụ một mục đích, nó có thể dẫn đến các hiệu ứng không mong muốn như hình trên. Để chống lại cùng một vấn đề, đối số Flush được sử dụng với hàm in (). Bây giờ, đặt đối số Flush là đúng và một lần nữa xem kết quả.

Các

Example:

Python3

GeeksforGeeks 
 is best for DSA Content.
07
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
09

GeeksforGeeks 
 is best for DSA Content.
10
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
09

GeeksforGeeks 
 is best for DSA Content.
13
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
15

print

GeeksforGeeks 
 is best for DSA Content.
17
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
19
GeeksforGeeks 
 is best for DSA Content.
2

Output:

12-12-2022

Example:

Máy tách biệt10, 20 and 30 are positional argument where as sep=’ – ‘ is keyword argument.

Python3

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
23
GeeksforGeeks 
 is best for DSA Content.
24
GeeksforGeeks 
 is best for DSA Content.
25
GeeksforGeeks 
 is best for DSA Content.
26
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
28
GeeksforGeeks 
 is best for DSA Content.
24
GeeksforGeeks 
 is best for DSA Content.
30
GeeksforGeeks 
 is best for DSA Content.
2

Output:

  File "0b97e8c5-bacf-4e89-9ea3-c5510b916cdb.py", line 1
    print(10, 20, sep=' - ', 30)
                            ^
SyntaxError: positional argument follows keyword argument

đối số tập tin

Trái với niềm tin phổ biến, hàm in () không chuyển đổi các tin nhắn thành văn bản trên màn hình. Chúng được thực hiện bởi các lớp mã cấp thấp hơn, có thể đọc dữ liệu (tin nhắn) bằng byte. Hàm print () là một giao diện trên các lớp này, giao cho việc in thực tế vào một luồng hoặc đối tượng giống như tệp. Theo mặc định, hàm in () được liên kết với sys.stdout thông qua đối số tệp. & Nbsp;file-like object. By default, the print() function is bound to sys.stdout through the file argument. 

Ví dụ: python print () vào tệp

Python3

GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
8
GeeksforGeeks 
 is best for DSA Content.
33

GeeksforGeeks 
 is best for DSA Content.
34
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
36

Các

GeeksforGeeks 
 is best for DSA Content.
44

Output:

'Hello Geeks!!\n'

Ví dụ: với hàm in () để ghi nội dung trực tiếp vào tệp văn bản.

Python3

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
47
GeeksforGeeks 
 is best for DSA Content.
24
GeeksforGeeks 
 is best for DSA Content.
41
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
51
GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
53
GeeksforGeeks 
 is best for DSA Content.
24
GeeksforGeeks 
 is best for DSA Content.
55
GeeksforGeeks 
 is best for DSA Content.
56

Output:

% nano Testfile.txt
-----------------------------------------------------------------------------------------------
  UW PICO 5.09                                            File: Testfile.txt                                               

Welcome to GeeksforGeeks Python world.!!


^G Get Help         ^O WriteOut         ^R Read File        ^Y Prev Pg          ^K Cut Text         ^C Cur Pos          
^X Exit             ^J Justify          ^W Where is         ^V Next Pg          ^U UnCut Text       ^T To Spell      

Ví dụ: Sử dụng hàm in () trong Python Using print() function in Python

Python3

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
59
GeeksforGeeks 
 is best for DSA Content.
2

GeeksforGeeks 
 is best for DSA Content.
61
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
63

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
66
GeeksforGeeks 
 is best for DSA Content.
67

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
70
GeeksforGeeks 
 is best for DSA Content.
24
GeeksforGeeks 
 is best for DSA Content.
72
GeeksforGeeks 
 is best for DSA Content.
24
GeeksforGeeks 
 is best for DSA Content.
70
GeeksforGeeks 
 is best for DSA Content.
26
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
77

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
80
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
0
GeeksForGeeks is the best platform for DSA content
GeeksForGeeks is the best platform for DSA content**Welcome to GFG
1
GeeksforGeeks 
 is best for DSA Content.
83
GeeksforGeeks 
 is best for DSA Content.
2

print

GeeksforGeeks 
 is best for DSA Content.
0
GeeksforGeeks 
 is best for DSA Content.
87
GeeksforGeeks 
 is best for DSA Content.
2

Output:

GeeksForGeeks
x = 5
GFG
Python@GeeksforGeeks

Lệnh nào được sử dụng để in đầu ra trong Python?

Hàm in () trong Python được sử dụng để in một thông báo được chỉ định trên màn hình.Lệnh in trong Python in các chuỗi hoặc các đối tượng được chuyển đổi thành một chuỗi trong khi in trên màn hình.print() function in Python is used to print a specified message on the screen. The print command in Python prints strings or objects which are converted to a string while printing on a screen.

Chức năng nào in ra đầu ra?

Đầu ra bằng hàm in ().Cách đơn giản nhất để tạo ra đầu ra là sử dụng hàm in () nơi bạn có thể vượt qua số không hoặc nhiều biểu thức được phân tách bằng dấu phẩy.Hàm này chuyển đổi các biểu thức bạn truyền vào một chuỗi trước khi ghi vào màn hình.print() function. The simplest way to produce output is using the print() function where you can pass zero or more expressions separated by commas. This function converts the expressions you pass into a string before writing to the screen.