• 大小: 5.21KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2024-05-07
  • 语言: Python
  • 标签:

资源简介

常用示例代码如下:

输出某个路径下的所有文件和文件夹的路径
输出某个路径及其子目录下的所有文件路径
把原字典的键值对颠倒并生产新的字典
打印九九乘法表
随机生成验证码的两种方式
判断闰年
获取最大值
最大公约数
最小公倍数
计算器
日历等等

资源截图

代码片段和文件信息

# # 输出某个路径下的所有文件和文件夹的路径
# 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

评论

共有 条评论