100 Python 题

Posted hrunjie

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了100 Python 题相关的知识,希望对你有一定的参考价值。

1.

list_num = [1, 2, 3, 4]
count = 0
for x in list_num:
    for y in list_num:
        for z in list_num:
            if (x!=y and x!=z and y!=z):
                count += 1
                print(str(x)+str(y)+str(z))
print(total is %d%(count))

法二
import itertools
list_num = [1, 2, 3, 4]
for x in itertools.permutations(list_num,3):
    print(x)

 

以上是关于100 Python 题的主要内容,如果未能解决你的问题,请参考以下文章

Python数据分析numpy入门-------numpy100题练习

Python数据分析numpy入门-------numpy100题练习

OpenCV 机器视觉入门精选 100 题(附 Python 代码)

python3练习100题——027

python面试的100题(21)

python3练习100题——018