上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 119 下一页
摘要: FF=[[]] for i in range(0,10): kk = [] for k in range(0,10): if(k==0): kk.append(i) else: kk.append(k) #print(kk) FF.insert(i,kk) print(FF) # 打印列表 for 阅读全文
posted @ 2024-06-08 06:52 ®Geovin Du Dream Park™ 阅读(22) 评论(0) 推荐(0)
摘要: /// <summary> /// 使用元组(Tuples或ValueTuple /// </summary> /// <param name="id"></param> /// <param name="name"></param> /// <returns></returns> public s 阅读全文
posted @ 2024-05-22 19:48 ®Geovin Du Dream Park™ 阅读(20) 评论(0) 推荐(0)
摘要: # encoding: utf-8 # 版权所有 2024 ©涂聚文有限公司 # 许可信息查看: # 描述: https://github.com/Broham/suncalcPy # Author : geovindu,Geovin Du 涂聚文. # IDE : PyCharm 2023.1 p 阅读全文
posted @ 2024-05-15 18:04 ®Geovin Du Dream Park™ 阅读(54) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace GeovinDu.Ticket.Common { /// <summary> /// /// </summa 阅读全文
posted @ 2024-05-13 14:43 ®Geovin Du Dream Park™ 阅读(229) 评论(0) 推荐(0)
摘要: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Threading.Tasks; namespace WebAppPdfDemo { /// <summ 阅读全文
posted @ 2024-05-13 14:40 ®Geovin Du Dream Park™ 阅读(37) 评论(0) 推荐(0)
摘要: binary_num = '10000001' ones_complement = '' for bit in binary_num: ones_complement += '0' if bit == '1' else '1' print(ones_complement) #加上1 binary_n 阅读全文
posted @ 2024-05-12 22:20 ®Geovin Du Dream Park™ 阅读(34) 评论(0) 推荐(0)
摘要: // geovindu /* (c) 2011-2015, Vladimir Agafonkin SunCalc is a JavaScript library for calculating sun/moon position and light phases. https://github.co 阅读全文
posted @ 2024-05-10 16:31 ®Geovin Du Dream Park™ 阅读(248) 评论(0) 推荐(0)
摘要: import os import socket import struct from unidecode import unidecode import re import json import requests from bs4 import BeautifulSoup import gzip 阅读全文
posted @ 2024-04-30 15:45 ®Geovin Du Dream Park™ 阅读(67) 评论(0) 推荐(0)
摘要: def unGz(file_name): """ ungz zip file import gzip :param file_name: :return: """ f_name = file_name.replace(".gz", "") #获取文件的名称,去掉 g_file = gzip.Gzip 阅读全文
posted @ 2024-04-29 20:52 ®Geovin Du Dream Park™ 阅读(47) 评论(0) 推荐(0)
摘要: <!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta content="text/html; 阅读全文
posted @ 2024-04-29 09:15 ®Geovin Du Dream Park™ 阅读(59) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 119 下一页