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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T13:55:31+00:00 2026-06-11T13:55:31+00:00

I want to write a script which will do some specific job, each time

  • 0

I want to write a script which will do some specific job, each time when the job is done, I want to increase a job_done_count by 1, that is if I run the script 10 times, job_done_count will be 10.

This is how this script looks like,

#!/usr/bin/env python

job_done_count = 0   
...

if __name__ == '__main__':
    do_the_job()
    job_done_count += 1

I kind wonder it works or not. Because, each time I run the script, job_done_count will be set to 0, then 1. It doesn’t remember how many times the job being done at all.

Am I supposed not to put this job_done_count in the script?

  • 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-11T13:55:32+00:00Added an answer on June 11, 2026 at 1:55 pm

    Or don’t use pickle and do it in any of the following ways.

    By hand

    with open("jobs_done.txt") as inp:
        job_done_count = int(inp.read().strip())
    

    With json

    with open("jobs_done.json") as inp:
        job_done_count = json.load(inp)['jobs_done']
    

    Or with a billion other methods!

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

Sidebar

Related Questions

I want to write a script for gdb, which will save backtrace (stack) of
I am trying to write an php twitter script which will be run by
I am trying to write a script that will contain multiple commands which the
i am working on unix. i want to write a shell script which will
I need to write some ruby script which will help me with big image
I want to write a script in AutoIt, which can take automatic input from
I want to write a very simple script , which takes a process name
I want to write a script that compares two directories. However, the file names
I want to write a php script that keeps the apache_log file open and
I want to write a shell script which does installation related task. I want

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.