Task 3: Global and Local Variables Create a global variable…
Task 3: Global and Local Variables Create a global variable named global_count and initialize it to 0. Define a function named increment_count that increments global_count by 1. Call increment_count twice from outside the function. Print the value of global_count.
Read Details