资源简介
常用示例代码如下:
输出某个路径下的所有文件和文件夹的路径
输出某个路径及其子目录下的所有文件路径把原字典的键值对颠倒并生产新的字典打印九九乘法表随机生成验证码的两种方式判断闰年获取最大值
最大公约数最小公倍数
计算器
日历等等
代码片段和文件信息
# # 输出某个路径下的所有文件和文件夹的路径
# import os
# def print_dir():
# filepath = input(“请输入一个路径:“)
# if filepath == ““:
# print(“请输入正确的路径“)
# else:
# for i in os.listdir(filepath):
# print(os.path.join(filepathi))
# print(print_dir())
#
#
#
# # # 输出某个路径及其子目录下的所有文件路径
# import os
# def show_dir(filepath):
# for i in os.listdir(filepath):
# path = (os.path.join(filepathi))
# print(path)
# if os.path.isdir(path):
# show_dir(path)
# filepath = “D:\Firefox_Download“
# show_dir(filepath)
#
#
#
# # # 把原字典的键值对颠倒并生产新的字典
# dict1 = {“A“:“a““B“:“b““C“:“c““D“:“d“}
# dict2 = {y:x for xy in dict1.items()}
# print(dict2)
#
#
#
# # # 打印九九乘法表
# for i in range(1 10):
# for j in range(1 i+1):
# print(‘%d x %d = %d \t‘ % (i j i*j) end=‘‘)
# print()
#
#
#
# # # 随机生成验证码的两种方式
# import random
# list1 = []
# for i in range(6591):
# list1.append(chr(i))
# for j in range(97123):
# list1.append(chr(j))
# for k in range(4858):
# list1.append(chr(k))
# ma = random.sample(list16)
# print(ma)
# ma = ‘‘.join(ma)
# print(ma)
#
# import randomstring
# str1 = “0123456789“
# str2 = string.ascii_letters
# str3 = str1 + str2
# ma1 = random.sample(str36)
# ma1 = ‘‘.join(ma1)
# print(ma1)
#
#
#
# # # 判断闰年
# # 1.
# year = int(input(“请输入一个年份:“))
# if (year % 4) == 0:
# if (year % 100) == 0:
# if (year % 400) == 0:
# print(“{0} 是闰年“.format(year))
# else:
# print(“{0} 不是闰年“.format(year))
# else:
# print(“{0} 是闰年“.format(year))
# else:
# print(“{0} 不是闰年“.format(year))
# # 2.
# year = int(input(“请输入一个年份:“))
# if (year % 4) == 0 and (year % 100) == 0 and (year % 400) == 0:
# print(“{0} 是闰年“.format(year))
# else:
# print(“{0} 不是闰年“.format(year))
# # 3.
# import calendar
# year = int(input(“请输入年份:“))
# check_year = calendar.isleap(year)
# if check_year == True:
# print(“%d是闰年“ % year)
# else:
# print(“%d是平年“ % year)
#
#
#
# # # 获取最大值
# N = int(input(“输入需要对比大小数字的个数:“))
# print(“请输入需要对比的数字:“)
# num = []
# for i in range(1 N+1):
# temp = int(input(“输入第 %d 个数字:“ % i))
# num.append(temp)
# p
相关资源
- Python其它开发工具的安装与使用.ppt
- 机器学习numpy和pandas基础
- Python 3 Web Development. Beginners Guide
- 打砖块
- python while
- 随机生成50000个不重复的手机号码
- Python-借助adb工具配合Python脚本来实现
- HDF批量转TIF
- arp欺骗python脚本:arp_spoof.py
- python turtle画机器猫
- FP-Growth算法python实现(完整代码)
- python 获取控制台输入的值
- python随机生成学生信息并写入文件(
- python比丘特之箭(基于turtle)
- python动态 画花朵(turtle)
- python贪吃蛇(pygame入门级示例源码)
- python绘制多彩N边形(turtle)
-
深度学习目标检测提取xm
l文件中的 - python提取word中的图片到指定文件夹
- python将word转为pdf文件
- Python爬虫:爬取小说站(biqukan.com)网
- gnn(PageRank.ipynb)
- python绘制 大蟒蛇
- python 人群计数
- “去哪儿吃”帮你选餐厅(python代码
- python 画的一棵树(基于turtle+math+ran
- 轴承故障诊断python代码
- python 画奥运五环(基于turtle)
- 词向量生成(word2vector.py)
- 行列式转置(reverseArray.py)
评论
共有 条评论