python求答案
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python求答案相关的知识,希望对你有一定的参考价值。
在python中,______表示的是有符号整型?
使用FIND函数没有找到子串时,程序会返回_____
列表的嵌套值的是列表的元素又是一个________
若不确定字典中是否存在某个键而获取其值时,可以使用____方法进行访问
如果if判断条件为______,则程序执行else语句
______表达式表示结束函数,选择性地返回一个值给调用方
由于python的____本质,因此,它可以被移植到很多平台上
有个没有参数的函数test,那么要使用______方式完成调用
如果要获取字典中的某个值,则可以根据______来访问
函数根据参数和返回值的有无,大概可以分为____和_______、______、_____四种方式
第二题:-1
第三题:list
第四题:key in dict
第五题:false
第六题:return
第七题:开源
第八题:
第九题:dict.get(key)
第十题:(1)无参数,无返回值;(2)无参数,有返回值的函数;(3)有参数,无返回值的函数;(4)有参数,有返回值的函数 参考技术A 第一个空填 int
Python支持四种不同的数字类型:
int(有符号整型)
long(长整型,当然也可以代表八进制和十六进制)
float(浮点型)
complex(复数)
python 编程 求答案!2、3两题
参考技术A #!/usr/bin/env python#coding=utf-8
import re
from datetime import datetime as dt, timedelta
import platform
if platform.python_version()[:1] == '2': #判断python版本是2还是3
import sys
reload(sys)
sys.setdefaultencoding('utf8')
class Idcard(object):
'''
>>> m = Idcard('225122198611134730')
>>> print(m.sex)
男
>>> m.birth
'1986-11-13'
>>> m.age
30
'''
def __init__(self,idcard):
self.idcard = idcard
if len(idcard) == 15:
sex, birth = idcard[-1:], '19' + idcard[6:12]
elif len(idcard) == 18:
sex, birth = idcard[-2:-1], idcard[6:14]
else:
raise Exception('len(idcard) is (15/18)'.format(len(idcard)))
self._sex = int(sex) % 2
self._birth = birth
@property
def sex(self):
return u'男' if self._sex % 2 else u'女'
@property
def age(self):
now, bir = dt.now(), dt.strptime(self._birth, '%Y%m%d')
beforebirth = (now - dt(now.year, bir.month, bir.day)).days < 0
return dt.now().year - int(self._birth[:4]) - beforebirth
@property
def birth(self):
return dt.strptime(self._birth, '%Y%m%d').strftime('%Y-%m-%d')
def alignment(str1, space, align = 'left'):
length = len(str1.encode('gb2312'))
space = space - length if space >=length else 0
if align == 'left':
str1 = str1 + ' ' * space
elif align == 'right':
str1 = ' '* space +str1
elif align == 'center':
str1 = ' ' * (space //2) +str1 + ' '* (space - space // 2)
return str1
def main():
fname = 'customer.txt'
'''
with open(fname, 'w') as f:
f.write("""
郑文杰 225122198611134730
文萍 225122198912094740
郑妈妈 225122590303476
郑爸爸 225122560506471
""")
'''
newf = 'ourcustomers.txt'
with open(fname) as f:
s = f.readlines()
L, newL = [re.split(r'\\s+', i.strip()) for i in s], []
for i in L:
if len(i) == 2:
g = Idcard(i[1])
newL.append(''.format(
alignment(i[0], 10), alignment(g.sex, 8), g.age))
with open(newf, 'w') as f:
f.write('\\n'.join(newL))
print('\\n'.join(newL[:100]))
print('Customer data has been write into '.format(newf))
if __name__ == '__main__':
import doctest
doctest.testmod()
main() 参考技术B #-*- coding:utf-8 -*-
import time
import datetime
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
def msg():
f = open('test.txt','r')
'''
李丽丽 320382199606160123
徐华彩 320382199606160134
蔺小虎 320382199606160145
葛俊 320382199606160156
'''
res = f.readlines()
for i in range(len(res)):
result = res[i].replace(' ', '').replace('\\t', '').replace('\\n', '').replace('\\r', '')
name = result[0:-18]
num = result[-2:-1]
now_time = datetime.datetime.now()
time = datetime.datetime.now().strftime('%Y%m%d')
year = result[-12:-4]
age = int(time[0:4]) - int(year[0:4])
if int(time[4:]) > int(year[4:]):
age = age
else:
age = age - 1
if int(num) % 2 == 0:
sex = "女".decode('utf-8').encode('gbk')
else:
sex = "男".decode('utf-8').encode('gbk')
with open('oeder.txt', 'a') as f:
f.write(str(name) + ' ' + str(sex) + ' ' + str(age) + '\\n')
f.close()
f.close
if __name__ == "__main__":
start = time.clock()
msg = msg()
end = time.clock()
print u'保存完成,共耗时:'+str(end - start)追问
十分感谢
本回答被提问者采纳 参考技术C 这要写多少代码啊?分太少了。追问如果满意的话再加30分
以上是关于python求答案的主要内容,如果未能解决你的问题,请参考以下文章