Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Python by (1.6k points)

I have this example in C/C++ and I want the same code for Python

void numbers()

{

    static int count = 0;

    count++;

    printf("count is %d\n", count);

}

How to implement static member at a function level as opposed to the class level?If I place a function into a class will it change anything?

1 Answer

0 votes
by (25.1k points)

You can add attributes to a function, and use it as a static variable.

def function():

  function.counter += 1

  print(function.counter)

function.counter = 0

Related questions

0 votes
2 answers
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...