热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Python中的SymPy|arrange.size()

Python中的SymPy|arrange.size()

Python 中的 SymPy | arrange . size()

原文:https://www . geesforgeks . org/sympy-排列-python 中的大小/

arrange . size():size()是一个 sympy Python 库函数,返回排列中的元素个数。

语法:sympy . combinations .排列.置换. size()

返回:排列中的元素个数。

代码#1:大小()示例

# Python code explaining
# SymPy.Permutation.size()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
# Using from 
# sympy.combinatorics.permutations.Permutation.size() method 
# creating Permutation
a = Permutation([[2, 0], [3, 1]])
b = Permutation([1, 3, 5, 4, 2, 0])
print ("Permutation a - size form : ", a.size)
print ("Permutation b - size form : ", b.size)

输出:

排列 a–大小形式:4
排列 b–大小形式:6

代码#2:大小()示例

# Python code explaining
# SymPy.Permutation.size()
# importing SymPy libraries
from sympy.combinatorics.partitions import Partition
from sympy.combinatorics.permutations import Permutation
# Using from 
# sympy.combinatorics.permutations.Permutation.size() method 
# creating Permutation
a = Permutation([[2, 4, 0], 
                 [3, 1, 2],
                 [1, 5, 6]])
print ("Permutation a - size form : ", a.size)

输出:

排列 a-大小形式:7


推荐阅读
author-avatar
191568022_5d2113
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有