蓝魔之泪之月 发表于 2018-2-1 14:50:19

666

changdr1217 发表于 2018-2-2 13:51:11

感谢分享

candy_zww 发表于 2018-2-5 11:41:47

:)

dj343200523 发表于 2018-2-26 17:00:49

感谢分享

18512414931 发表于 2018-2-28 10:02:11

111

anzhang28 发表于 2018-2-28 18:39:06

    fn = 'test.txt'
    pattern = re.compile('\W+')
    with open(fn, 'r', 1024) as f:
      content = f.read()
      content = re.sub(pattern, ' ', content).lower()
      words = content.split(' ')
    uniq_words = list(set(words))
    wc = {}
    for k in uniq_words:
      wc = words.count(k)
    sorted_wc = sorted(wc.items(), key=lambda x:x, reverse=True)
    print len(sorted_wc)
    for i in range(0,10):
      print sorted_wc

anzhang28 发表于 2018-2-28 18:39:14

    fn = 'test.txt'
    pattern = re.compile('\W+')
    with open(fn, 'r', 1024) as f:
      content = f.read()
      content = re.sub(pattern, ' ', content).lower()
      words = content.split(' ')
    uniq_words = list(set(words))
    wc = {}
    for k in uniq_words:
      wc = words.count(k)
    sorted_wc = sorted(wc.items(), key=lambda x:x, reverse=True)
    print len(sorted_wc)
    for i in range(0,10):
      print sorted_wc

zangxi 发表于 2018-2-28 20:52:25

学习

liuxiaohuatest 发表于 2018-3-1 23:45:06

谢谢分享,选学习

_CR 发表于 2018-3-2 11:51:28

楼主良人

graceaaaaa 发表于 2018-3-2 13:45:29

学习

Orange-yu 发表于 2018-3-2 16:42:09

学习学习

双双双0227 发表于 2018-3-2 17:47:51



学习干货,涨知识

zbxshjy 发表于 2018-3-3 15:24:50

: python 面试题 [修改]

王硕 发表于 2018-3-3 16:14:59

666

sakura1991 发表于 2018-3-4 15:55:30

111

laobai1 发表于 2018-3-6 16:50:08

厉害

chacha.yuan 发表于 2018-3-7 16:01:48

:)

Ernst 发表于 2018-3-7 16:16:04

学习学习

嘻嘻嘻果冻 发表于 2018-3-7 18:08:12

:victory:
页: 1 2 3 [4] 5 6 7 8 9 10 11 12 13
查看完整版本: python 面试题