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 9139979
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T09:27:23+00:00 2026-06-17T09:27:23+00:00

I have a python project I’m working on whereby instead of print statements I

  • 0

I have a python project I’m working on whereby instead of print statements I call a function say() so I can print information while in development and log information during production. However, I often forget this and put print statements in the code by mistake. Is there anyway to have the python program read its own source, and exit() if it finds any print statements outside of the function say()?

  • 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-17T09:27:23+00:00Added an answer on June 17, 2026 at 9:27 am

    This can be done using the ast module. The following code will find any calls of the print statement and also of the print() function in case you are on Python 3 or Python 2 with the print_function future.

    import ast
    
    class PrintFinder(ast.NodeVisitor):
        def __init__(self):
            self.prints_found = []
    
        def visit_Print(self, node):
            self.prints_found.append(node)
            super(PrintFinder, self).generic_visit(node)
    
        def visit_Call(self, node):
            if getattr(node.func, 'id', None) == 'print':
                self.prints_found.append(node)
            super(PrintFinder, self).generic_visit(node)
    
    
    def find_print_statements(filename):
        with open(filename, 'r') as f:
            tree = ast.parse(f.read())
        parser = PrintFinder()
        parser.visit(tree)
        return parser.prints_found
    
    print 'hi'
    for node in find_print_statements(__file__):
        print 'print statement on line %d' % node.lineno
    

    The output of this example is:

    hi
    print statement on line 24
    print statement on line 26

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am working on my first large python project. I have one function which
I say project file in the loosest sense. I have a few python projects
I have a Visual Studio project which uses nmake to call a Python file
I need to have an at-home project now that I'm working on Python/Django at
I'm running into an issue while unit-testing a Python project that I'm working on
I am working on a python project and have generated tons of python scripts.
So I have a virtualenv folder called venv for my python project. I can
I have a Python project, which can be installed using Pip. Along with installing
I have a python project I'm working on, and I'm keeping it on github.
We have a simple AssertTrue function used in our python project and I wanted

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.