This section describes how to use the readline () method in Python.

Source: Internet
Author: User

This section describes how to use the readline () method in Python.

This article briefly introduces the use of the readline () method in Python. It is the basic knowledge of getting started with Python. For more information, see

The readline () method reads an entire row from a file. The linefeed at the end is kept in the string. If the size parameter is not negative, a maximum number of bytes, including the ending line breaks and incomplete rows, may be returned.

Returns an empty string immediately when EOF is encountered.

Syntax

The syntax of the readline () method is as follows:

?

1

FileObject. readline (size );

Parameters

Size -- the number of bytes that can be read from the file.

Return Value

This method returns the rows read from the file.

Example

The following example shows how to use the readline () method.

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

#! /Usr/bin/python

 

# Open a file

Fo = open ("foo.txt", "rw + ")

Print "Name of the file:", fo. name

 

# Assuming file has following 5 lines

# This is 1st line

# This is 2nd line

# This is 3rd line

# This is 4th line

# This is 5th line

 

Line = fo. readline ()

Print "Read Line: % s" % (line)

 

Line = fo. readline (5)

Print "Read Line: % s" % (line)

 

# Close opend file

Fo. close ()

When we run the above program, it will produce the following results:

?

1

2

3

4

Name of the file: foo.txt

Read Line: This is 1st line

 

Read Line: This

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.