1.模块化作业

1.回顾文件递归遍历. 默写一遍.

入口在: 当文件是个文件夹的时候

出口在: 文件是一个文件

2.计算时间差(用户输入起始时间和结束时间. 计算时间差(小时),

例如, 用户输入2018-10-08 12:00:00 2018-10-08 14:30:00 输出2小时

3.写一个函数,接收一个参数,如果是文件,就执行这个文件,如果是文件夹,就执行这个文件夹下的所有的py文件。

4.写一个copy函数,接受两个参数,第一个参数是源文件的位置,第二个参数是目标位置,将源文件copy到目标位置。

5.获取某个文件所在目录的上一级目录。

30分

6.使用os模块创建如下目录结构

# glance
# ├── __init__.py
# ├── api
# │ ├── __init__.py
# │ ├── policy.py
# │ └── versions.py
# ├── cmd
# │ ├── __init__.py
# │ └── manage.py
# └── db
# ├── __init__.py
# └── models.py

7.写一个用户注册登陆的程序,每一个用户的注册都要把用户名和密码用字典的格式写入文件userinfo。在登陆的时候,再从文件中读取信息进行验证。

8.使用random模块,编写一个发红包的函数

2.作业详解

点击查看详细内容

#1.
import os
def func(path,n=0):
path_list = os.listdir(path) #1.打开文件夹,查看当前目录的文件
for name in path_list: #2.遍历文件名
abs_path = os.path.join(path,name) #3.文件绝对路径
if os.path.isdir(abs_path):
print("\t"*n,name,":")
func(abs_path,n+1) #递归,n:层数,多一层多一个 "\t"
else:
print("\t"*n,name) ret = func('E:\S15\day1')

2.

import time

start_time = time.strptime('2018-10-08 12:00:00','%Y-%m-%d %H:%S:%M')

end_time = time.strptime('2018-10-08 14:30:00','%Y-%m-%d %H:%S:%M')

sub_time = time.mktime(end_time) - time.mktime(start_time)

gm_time = time.gmtime(sub_time)

print('过去了%d年%d月%d日%d时%d分%d秒'%(gm_time.tm_year-1970,gm_time.tm_mon-1,

gm_time.tm_mday-1,gm_time.tm_hour,

gm_time.tm_min,gm_time.tm_sec))

3.

思路:

#先判断这个path是文件还是文件夹
#如果是文件:.py结尾的,执行文件:os.system('python path')
#如果是文件夹:查看文件夹下的所有内容,如果是文件.py结尾则执行

import os

def exec_py(path):

if os.path.isfile(path) and path.endswith('.py'):

os.system('python %s'%path)

elif os.path.isdir(path):

path_list = os.listdir(path)

for name in path_list:

abs_path = os.path.join(path,name)

if os.path.isfile(abs_path) and abs_path.endswith('.py'):

os.system('python %s'%abs_path)

elif os.path.isdir(abs_path):

exec_py(abs_path)

exec_py(r'E:\S15\day20')

4.

def copy(path1,path2):

filename = os.path.basename(path1)

if os.path.isfile(path1) and os.path.isdir(path2):

path2 = os.path.join(path2,filename)

if os.path.exists(path2):

print('文件已存在')

else:

with open(path1,'rb') as f1,

open(path2,'wb') as f2:

content = f1.read()

f2.write(content)

copy(r'E:\S15\day20\01.内容回顾.txt',r'E:\S15\day19')

5.

def get_cwd(path):

return os.path.dirname(path)

ret = get_cwd('E:\S15\day20')

6.

os.makedirs('glance/api')

os.makedirs('glance/cmd')

os.makedirs('glance/db')

open('glance/init.py','w').close()

open('glance/api/init.py','w').close()

open('glance/api/policy.py','w').close()

open('glance/api/versions.py','w').close()

open('glance/cmd/init.py','w').close()

open('glance/cmd/manage.py','w').close()

open('glance/db/init.py','w').close()

open('glance/db/models.py.py','w').close()

7.

思路:

import pickle

def enrol():

username = input("Input Username:")

password = input("Input Password:")

dic = {'usr':username,'pwd':password}

with open('userinfo','ab') as f:

pickle.dump(dic,f)

print('注册成功')

enrol()

def login():

username = input("Input Username:")

password = input("Input Password:")

with open('userinfo','rb') as f:

while True:

try:

str_dic = pickle.load(f)

if str_dic['usr'] == username and str_dic['pwd'] == password:

print('登陆成功')

break

except EOFError:

print('登陆失败')

break

login()

8.发红包

import random

def send_money(money,num):

money = money * 100 #整数进两位,后面算出小数

ret = random.sample(range(1,money),num-1)

ret.sort()

ret.insert(0,0)

ret.append(money)

#print(ret)

for i in range(len(ret)-1):

yield (ret[i+1] - ret[i])/100

ret_g = send_money(200,10)

for i in ret_g:

print(i)

day20模块作业的更多相关文章

  1. Python:Day20 模块

    模块是用来组织函数的. 模块一共3种: python标准库 第三方模块 应用程序自定义模块 模块搜索路径:sys.path import sys print(sys.path) import calc ...

  2. day20 模块-sys,time,collection

    所有常用模块的用法:  http://www.cnblogs.com/Eva-J/articles/7228075.html 前情回顾: # 常用模块 # 常用模块 —— 东西多 # 异常处理 # 什 ...

  3. day20 模块 collections time sys os

    1.模块 1. 模块的定义:我们把装有特定功能的代码进行归类的结果.我们目前写的所有py文件都是模块 2. 引入模块的方式: 1.import 模块名 2.from xxx import 模块名 2. ...

  4. 常用模块Part(1)

    collections模块 time模块 random模块 os模块 sys模块 collections模块 这个模块实现了一些很好的数据结构,它们能帮助你解决各种实际问题 在这里主要介绍几种数据结构 ...

  5. python(31)- 模块练习

    1. 小程序:根据用户输入选择可以完成以下功能:     创意文件,如果路径不存在,创建文件夹后再创建文件     能够查看当前路径     在当前目录及其所有子目录下查找文件名包含指定字符串的文件 ...

  6. [ python ] 学习目录大纲

    简易博客[html+css]练习 MySQL 练习题及答案 MySQL视图.触发器.函数.存储过程 MySQL 操作总结 Day41 - 异步IO.协程 Day39/40 - 线程的操作 Day36/ ...

  7. 老男孩Python全栈第2期+课件笔记【高清完整92天整套视频教程】

    点击了解更多Python课程>>> 老男孩Python全栈第2期+课件笔记[高清完整92天整套视频教程] 课程目录 ├─day01-python 全栈开发-基础篇 │ 01 pyth ...

  8. Python学习进程

    1周第1天 主要是变量的学习(11月8日) 1.1 python安装(win和linux下)1.2 ipython安装及使用1.3 变量的定义1.4 变量赋值1.5 运算符(赋值.算术.关系.逻辑)1 ...

  9. Linux - 请允许我静静地后台运行

    h1,h2,h3,h4,h5,h6,p,blockquote { margin: 0; padding: 0 } body { font-family: "Helvetica Neue&qu ...

随机推荐

  1. 【leetcode刷题笔记】N-Queens

    The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens ...

  2. luoguP1941福赖皮波德

    #include<iostream> #include<cstdio> #include<cstdlib> #include<cstring> #inc ...

  3. 1057 Stack (30)(30 分)

    Stack is one of the most fundamental data structures, which is based on the principle of Last In Fir ...

  4. oracle隐含参数的查看与修改

    v$parameter视图中查询参数的时候其实都是通过x$ksppi和x$ksppcv这两个内部视图中得到的. 1.   可以通过如下方式查询当前实例的所有隐含参数: col name for a30 ...

  5. C++ ORM ODB入门

    1.ORM ORM, Object Relational Mapping, 对象关系映射,用来将基于对象的数据结构映射到SQL的数据结构中.即将基于对象的数据映射到关系表中的字段,然后我们可以通过对象 ...

  6. JS 数组的一些方法

    1.push() //可以接受任意参数,然后添加到数组的末尾 2.pop()//栈方法,在数组末尾删除一条数据,并且返回这条数据 3.shift()//队列方法,与pop()相似,但是与其相反,在数组 ...

  7. [hdu4734]F(x)数位dp

    题意:求0~f(b)中,有几个小于等于 f(a)的. 解题关键:数位dp #include<bits/stdc++.h> using namespace std; typedef long ...

  8. [原创]SQL表值函数:把用逗号分隔的字符串转换成表格数据

      我们日常开发过程中,非常常见的一种需求,把某一个用逗号或者/或者其他符号作为间隔的字符串分隔成一张表数据. 在前面我们介绍了 [原创]SQL 把表中字段存储的逗号隔开内容转换成列表形式,当然按照这 ...

  9. 树莓派 Learning 002 装机后的必要操作 --- 03 替换软件源

    树莓派 装机后的必要操作 - 替换软件源 我的树莓派型号:Raspberry Pi 2 Model B V1.1 装机系统:NOOBS v1.9.2 树莓派的服务器实在太慢了!会导致你安装一个几M的东 ...

  10. 1.从GUI到MVC

    GUI(graphic user interface 用户图形界面).GUI编程的目的是提供交互性,并根据用户的操作实时的更新界面.用户的操作是不可预知的鼠标和键盘事件,我们如何保持同步和更新?在上层 ...