摘要: 8.4 Open the file romeo.txt and read it line by line. For each line, split the line into a list of words using the split() method. The program should 阅读全文
posted @ 2018-03-23 13:24 solitude_26 阅读(119) 评论(0) 推荐(0) 编辑
摘要: 发现自己在尝试循环和try结合时出现了死循环,好可怕。 例子:将用户输入的数值进行统计 阅读全文
posted @ 2018-03-23 10:43 solitude_26 阅读(75) 评论(0) 推荐(0) 编辑
摘要: 警告:别老是缩进没缩好,语句放不好,逻辑有待加强 ex:提示用户一直输入 阅读全文
posted @ 2018-03-23 10:33 solitude_26 阅读(98) 评论(0) 推荐(0) 编辑
摘要: (截图来自coursera密歇根大学python for data structure week3 ) line8:使用rstrip去除行之间空格 line9:打印出来开头是该字符串的行 line13:取小数点后的数 line14:取整准备计算 line15:这里刚开始的时候我将他单独抽出来一个循环 阅读全文
posted @ 2018-03-21 21:07 solitude_26 阅读(181) 评论(0) 推荐(0) 编辑
摘要: a = 'kdjflsjdflsnc,nkdooooooo' print(a.count('o') //自己傻了,哈哈 >>> count = 0>>> word = "dkfjlskdjfaaaaa">>> for letter in word: if letter == "a": count = 阅读全文
posted @ 2018-03-20 14:52 solitude_26 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 6.5 Write code using find() and string slicing (see section 6.10) to extract the number at the end of the line below. Convert the extracted value to a 阅读全文
posted @ 2018-03-20 13:27 solitude_26 阅读(133) 评论(0) 推荐(0) 编辑