社区所有版块导航
Python
python开源   Django   Python   DjangoApp   pycharm  
DATA
docker   Elasticsearch  
aigc
aigc   chatgpt  
WEB开发
linux   MongoDB   Redis   DATABASE   NGINX   其他Web框架   web工具   zookeeper   tornado   NoSql   Bootstrap   js   peewee   Git   bottle   IE   MQ   Jquery  
机器学习
机器学习算法  
Python88.com
反馈   公告   社区推广  
产品
短视频  
印度
印度  
私信  •  关注

Sumana

Sumana 最近创建的主题
Sumana 最近回复了
5 年前
回复了 Sumana 创建的主题 » 编写Python函数来检查字符串是否为pangram
    import string
    alphabet = set(string.ascii_lowercase) 
    def ispangram(str):
         return not set(alphabet) - set(str)
    string = 'the quick brown fox jumps over the lazy dog'
    if(ispangram(string) == True): 
        print("Yes") 
    else: 
        print("No") 
5 年前
回复了 Sumana 创建的主题 » 嵌套For循环乘法表的Python必须具有Teacher的精确输出
    for i in range(1, 13):
        print("*", i, ":", end=" ")
        for j in range(1, 13):
            print("{:2d}".format(i * j), end=" ")
        [![enter image description here][1]][1]print()

enter image description here