python算法面试题及答案python算法面试题目100及最佳答案
下载地址 https://share.weiyun.com/gcOeOitM
资料目录 100道Python面试题 5个等待挑战的Python面试题(附答案) python基础面试题三十一道(附详细答案) python面试基础题十大陷阱(附详细答案) python面试真实笔试题带答案(1-10题) Python面试中必看的8个必考问题(附详细答案) Python爬虫开发面试常见问题(附详细答案) Python爬虫面试题(附详细答案) python数据分析师面试题选(附详细答案) Python数据挖掘试题四十道(附答案) 阿里巴巴Python开发工程师面试题(附答案) 常见的25个python面试问答(附详细答案) Python经典面试题和答案解析 四类必须提前准备的Python程序员面试问题 出现频率最高的python面试题集锦(附详细答案) 珍藏版Python web后端开发工程师面试试题 尚观python第一阶段考试(面试真题模拟) 老男孩Python全栈7期练习题(面试真题模拟) 傲梦python笔试题及答案 python 笔试题(附带答案) Python题库(已收录100道真题) python第一阶段考试题 python基础试题(含答案) PYTHON测试题和答案 Python考试题复习知识点试卷试题 python期末考试复习试卷
举例 CDays-4 1. os 模块中还有哪些功能可以使用? -- 提示使用 dir()和help() o os模块中还有很多功能,主要的有以下些: os.error, os.path, os.popen, os.stat_result, os.sys, os.system等等等,详细可参见dir("os")和Python帮助文档help("os") 2. open() 还有哪些模式可以使用? o open()有以下几种模式: 'r': 以只读方式打开已存在文件,若文件不存在则抛出异常。此方式是默认方式 'U'或者'rU': Python惯例构造了通用换行支持;提供'U'模式以文本方式打开一个文件,但是行可能随时结束:Unix的结束符规定为'\n',苹果系统则为'\r',还有Windows规定为'\r\n',所有这些规定在Python程序中统一为'\n'. 'w': 以可写方式打开存在或者不存在的文件,若文件不存在则先新建该文件,若文件存在则覆盖该文件 'a': 用于追加,对unix系统而言,所有的内容都将追加到文件末尾而不管指针的当前位置如何 'b': 以二进制方式打开。打开一个二进制文件必须用该模式。增加'b'模式是用来兼容系统对当二进制和文本文件的处理不同 'r+','w+'和'a+'以更新方式打开文件(注意'w+'覆盖文件) 3. 尝试for .. in ..循环可以对哪些数据类型进行操作? o for..in循环对于任何序列(列表,元组,字符串)都适用。但从广义说来可以使用任何种类的由任何对象组成的序列 4. 格式化声明,还有哪些格式可以进行约定? o 格式化申明 o 详细:http://docs.python.org/lib/typesseq-strings.html (精巧地址: http://bit.ly/2TH7cF) d Signed integer decimal. i Signed integer decimal. o Unsigned octal. u Unsigned decimal. x Unsigned hexadecimal (lowercase). X Unsigned hexadecimal (uppercase). e Floating point exponential format (lowercase). E Floating point exponential format (uppercase). f Floating point decimal format. F Floating point decimal format. g Floating point format. Uses exponential format if exponent is greater than -4 or less than precision, decimal format otherwise. G Floating point format. Uses exponential format if exponent is greater than -4 or less than precision, decimal format otherwise. c Single character (accepts integer or single character string). r String (converts any python object using repr()). s String (converts any python object using str()). % No argument is converted, results in a "%" character in the result.
|