File tree 1 file changed +15
-18
lines changed
0x03-python-data_structures
1 file changed +15
-18
lines changed Original file line number Diff line number Diff line change 1
- #include <stdio.h>
2
1
#include <Python.h>
3
2
4
3
/**
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.
9
6
*/
10
-
11
7
void print_python_list_info (PyObject * p )
12
8
{
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 ;
16
14
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 );
19
17
20
- list = (PyListObject * )p ;
21
- printf ("[*] Allocated = %ld\n" , list -> allocated );
18
+ for (i = 0 ; i < size ; i ++ )
19
+ {
20
+ printf ("Element %d: " , i );
22
21
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
+ }
28
25
}
You can’t perform that action at this time.
0 commit comments