美文网首页
python 笔记一

python 笔记一

作者: 午字横 | 来源:发表于2023-05-03 18:04 被阅读0次
    message=" hi "
    print(message)
    print(message.rstrip())
    print(message.lstrip())
    print(f"{message}")
    print(f"{message}\n 哈哈")
    print(f"{message}\n\t 哈哈")
    print("123 :{}".format(message))
    
    print(0.2+0.1)
    print(100_0000_0000)
    
    # 列表 有序,删除
    a=[1,2,3,4,5]
    print(a)
    del a[0]  #注意此处del方法 在狠毒地方可用
    print(a)
    
    tmp=a.pop(1)
    print(a)
    print(tmp)
    
    tmp=a.pop()
    print(a)
    print(tmp)
    
    print(f"开头大写:{message.title()}全部大写{message.upper()}全部小写{message.lower()}")
    
    >>>
    hi 
     hi
    hi 
     hi 
     hi 
     哈哈
     hi 
         哈哈
    123 : hi 
    0.30000000000000004
    10000000000
    [1, 2, 3, 4, 5]
    [2, 3, 4, 5]
    [2, 4, 5]
    3
    [2, 4]
    5
    开头大写: Hi 全部大写 HI 全部小写 hi 
    [Finished in 26ms]
    

    2023-05-04

    相关文章

      网友评论

          本文标题:python 笔记一

          本文链接:https://www.haomeiwen.com/subject/hvstsdtx.html