xxxxx

Posted igoodful

tags:

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

 

 

class MyTuple:
   def create_tuple():
    tu = ("apple", "banana", "cherry")
    print(tu)
    return 0 
   def create_tuple():
    tu = tuple(("apple", "banana", "cherry"))  # 注意双圆括号
    print(tu)

 

 

 

 

 

 

 

快速生成200个 xxxxx-xxxxx-xxxxx-xxxxx 格式的激活码,统计每个字符出现的次

今天看到一个很有意思的题:

分析:题中有快速和统计

1.使用生成器

2.字典来统计

以下代码仅为抛砖引玉:

import string
import random

class ITer_:
    def __init__(self):
        self.chars = string.ascii_letters + string.digits

    def __iter__(self):
        for _ in range(200):
            codes =[]
            for _ in range(4):
                codes.append("".join(random.choices(self.chars, k=5)))
                # random.shuffle(codes)
            yield "-".join(codes)

result = "".join([x.stri("-") for x in ITer_()])

# 注意 strip 和repalce
count_tmp = {}
for k in result:
    count_tmp[k] = count_tmp.get(k, 0) + 1

这里借用了string和random扩展库,有兴趣的可以看看它们的源码,很有意思的。

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

www.XXXXX.com(cn) 和 XXXXX.com(cn) 有啥不同吗?

如何在python中修改pandas中的排名

file“xxxxx”has modification times xxxxx s in the future..

漏洞? #1146 - 表 'xxx.xxxxx' 不存在

GO方法集问题cannot use xxxxx as xxxxx value in variable declaration

GO方法集问题cannot use xxxxx as xxxxx value in variable declaration