Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8434117
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:34:13+00:00 2026-06-10T06:34:13+00:00

I am trying to use With open() with python 2.6 and it is giving

  • 0

I am trying to use “With open()” with python 2.6 and it is giving error(Syntax error) while it works fine with python 2.7.3
Am I missing something or some import to make my program work!

Any help would be appreciated.

Br

My code is here:

def compare_some_text_of_a_file(self, exportfileTransferFolder, exportfileCheckFilesFolder) :
    flag = 0
    error = ""
    with open("check_files/"+exportfileCheckFilesFolder+".txt") as f1,open("transfer-out/"+exportfileTransferFolder) as f2:

        if f1.read().strip() in f2.read():
            print ""
        else:
            flag = 1
            error = exportfileCheckFilesFolder
            error = "Data of file " + error + " do not match with exported data\n"
        if flag == 1:   
            raise AssertionError(error)
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T06:34:15+00:00Added an answer on June 10, 2026 at 6:34 am

    The with open() statement is supported in Python 2.6, you must have a different error.

    See PEP 343 and the python File Objects documentation for the details.

    Quick demo:

    Python 2.6.8 (unknown, Apr 19 2012, 01:24:00) 
    [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2335.15.00)] on darwin
    Type "help", "copyright", "credits" or "license" for more information.
    >>> with open('/tmp/test/a.txt') as f:
    ...     print f.readline()
    ... 
    foo
    
    >>> 
    

    You are trying to use the with statement with multiple context managers though, which was only added in Python 2.7:

    Changed in version 2.7: Support for multiple context expressions.

    Use nested statements instead in 2.6:

    with open("check_files/"+exportfileCheckFilesFolder+".txt") as f1:
        with open("transfer-out/"+exportfileTransferFolder) as f2:
            # f1 and f2 are now both open.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to use Python (through Django framework) to make a Linux command
I'm trying to use python to sftp a file, and the code works great
I'm new to Python and am trying to make use of it to parse
I'm trying to learn how to use the pickle module in Python: import pickle
I am trying to use different open source apps in my project. Problem is
I'm trying to use the Open XML SDK with C++/CLI with MSVC 10 compiler.
I'm trying to use an open-source project. Both the latest official (from a *.tar.gz
I'm trying to use Python to concatenate a few javascript files together before minifying
I am trying to use python for translating a set of templates to a
I am trying to use python to query LDAP server, and it always returns

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.