导语:
本文主要介绍了关于两道简单却实用的python面试题的相关知识,希望可以帮到处于编程学习途中的小伙伴
题目一:python中String类型和unicode什么关系
整理答案:string是字节串,unicode是统一字符集,utf-8是其存储实现的一种形式,string可以用utf-8编码,也可以用GBK等各种编码格式编码
题目二:不用set集合方法,去除列表中的重复元素
方法一:
List=['b','b','d','b','c','a','a']
print "the list is:" , List
if List:
List.sort()
last = List[-1]
for i in range(len(List)-2, -1, -1):
if last==List[i]:
del List[i]
else:
last=List[i]
print "after deleting the repeated element the list is : " , List
方法二:使用列表综合
l1 = ['b','c','d','b','c','a','a']
l2 = []
[l2.append(i) for i in l1 if not i in l2]
print l2
题目三:实现斐波那契(Fibonacci)数列
方法一:递归
def fibonacci2(n):
if n == 1 or n == 2:
return 1
else:
return fibonacci2(n-1) + fibonacci2(n-2)
方法二:迭代
def fibonacci(n):
if n == 1 or n == 2:
return 1
nPre = 1
nLast = 1
nResult = 0
i = 2
while i < n:
nResult = nPre + nLast
nPre = nLast
nLast = nResult
i += 1
return nResult
print fibonacci(5)
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何使用 Python 的 Flask 框架开发 Web?11/02
- ♥ python中的pyenv是什么12/24
- ♥ Python学习网教你用极少的代码制作自己的屏幕翻译工具12/15
- ♥ 学习python要看什么书01/10
- ♥ 如何使用python查看网页源代码11/05
- ♥ python中str是什么意思08/16
内容反馈