Skip to content

Commit c1e03e8

Browse files
committed
100-print_python_list_info.c
1 parent b55f97b commit c1e03e8

File tree

1 file changed

+15
-18
lines changed

1 file changed

+15
-18
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,25 @@
1-
#include <stdio.h>
21
#include <Python.h>
32

43
/**
5-
* print_python_list_info - Function: prints about python lists
6-
* @p: PyObject
7-
*
8-
*Return: void
4+
* print_python_list_info - Prints basic info about Python lists.
5+
* @p: A PyObject list.
96
*/
10-
117
void print_python_list_info(PyObject *p)
128
{
13-
long int size, i;
14-
PyListObject *list;
15-
PyObject *item;
9+
int size, alloc, i;
10+
PyObject *obj;
11+
12+
size = Py_SIZE(p);
13+
alloc = ((PyListObject *)p)->allocated;
1614

17-
size = Py_SIZE(p);
18-
printf("[*] Size of the Python List = %ld\n", size);
15+
printf("[*] Size of the Python List = %d\n", size);
16+
printf("[*] Allocated = %d\n", alloc);
1917

20-
list = (PyListObject *)p;
21-
printf("[*] Allocated = %ld\n", list->allocated);
18+
for (i = 0; i < size; i++)
19+
{
20+
printf("Element %d: ", i);
2221

23-
for (i = 0; i < size; i++)
24-
{
25-
item = PyList_GetItem(p, i);
26-
printf("Element %ld: %s\n", i, Py_TYPE(item)->tp_name);
27-
}
22+
obj = PyList_GetItem(p, i);
23+
printf("%s\n", Py_TYPE(obj)->tp_name);
24+
}
2825
}

0 commit comments

Comments
 (0)