python faq

1、导入模块

要完整的导入目标模块名字,包括包名(及 文件名)

2、http 库使用

使用了requests库,比较方便。 导入时一直报错,原因是写该代码的文件名,命名成了http.py。python 文件名不能命名为与库相同的名字,需要注意

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
引用:3.sorted()方法和list.sort()方法有什么区别? list = ["hello","hey","hi","allow","consent","approve"] print(list) print("-"*100) list_sorted = sorted(list) print(list_sorted) print("-"*100) print(list) list_sort = list.sort() print(list) print(list_sort()) ['hello', 'hey', 'hi', 'allow', 'consent', 'approve'] ---------------------------------------------------------------------------------------------------- ['allow', 'approve', 'consent', 'hello', 'hey', 'hi'] ---------------------------------------------------------------------------------------------------- ['hello', 'hey', 'hi', 'allow', 'consent', 'approve'] ['allow', 'approve', 'consent', 'hello', 'hey', 'hi'] --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-26-b80c1a015c3a> in <module>() 8 list_sort = list.sort() 9 print(list) ---> 10 print(list_sort()) TypeError: 'NoneType' object is not callable 。引用:2.字典是可迭代的吗? for i in t: print(i) print("-"*100) for i in t.keys(): print(i) print("-"*100) for i in t.values(): print(i) print("-"*100) for i in t.items(): print(i) year month day hour minute second ---------------------------------------------------------------------------------------------------- year month day hour minute second ---------------------------------------------------------------------------------------------------- 2018 12 4 21 52 20 ---------------------------------------------------------------------------------------------------- ('year', '2018') ('month', '12') ('day', '4') ('hour', '21') ('minute', '52') ('second', '20') 。引用:1.如何取得字典中的键和值? t = {'year':'2018','month':'12','day':'4','hour':'21','minute':'52','second':'20'} print(t.keys()) print(t.values()) print(t.items()) dict_keys(['year', 'month', 'day', 'hour', 'minute', 'second']) dict_values(['2018', '12', '4', '21', '52', '20']) dict_items([('year', '2018'), ('month', '12'), ('day', '4'), ('hour', '21'), ('minute', '52'), ('second', '20')]) 。Python FAQ Q: sorted()方法和list.sort()方法有什么区别? A: sorted()方法和list.sort()方法都可以对列表进行排序,但是它们有一些区别。sorted()方法会返回一个新的已排序的列表,而不会修改原始列表。而list.sort()方法会直接修改原始列表,但不返回任何值。此外,list.sort()方法只能用于列表,而sorted()方法可以用于任何可迭代对象。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值