Con la ayuda del método sympy.nT() , podemos calcular el número de particiones que puede tener un número determinado de partes en SymPy.
Sintaxis: nT(elementos, k)
Parámetros:
elementos: un número entero, una lista o una string sobre la que se calcularán las particiones.
k: un número entero que especifica el número de partes que debe contener la partición.Devoluciones: Devuelve el número de particiones que han dado número de partes.
Ejemplo 1:
# import sympy from sympy import * items = "aaa" k = 2 print("Value of k = {} and the items are = {}".format(k, items)) # Use sympy.nT() method partitions = nT(items, k) print("Partitions : {}".format(partitions))
Producción:
Value of k = 2 and the items are = aaa Partitions : 1
Ejemplo #2:
# import sympy from sympy import * items = [1, 3, 2, 5, 4] k = 3 print("Value of k = {} and the items are = {}".format(k, items)) # Use sympy.nT() method partitions = nT(items, k) print("Partitions : {}".format(partitions))
Producción:
Value of k = 3 and the items are = [1, 3, 2, 5, 4] Partitions : 25
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA