摘要: 1 # 2 # This is the main Apache HTTP server configuration file. It contains the 3 # configuration directives that give the server its instructions. 4 阅读全文
posted @ 2021-08-03 19:38 Σωκράτης 阅读(52) 评论(0) 推荐(0)
摘要: 官方下载 使用Apache作为服务器,需要下载Thread Safe版本 2.在C盘根部新建PHP8文件夹,把php-8.0.9-Win32-vs16-x64.zip解压到该目录下 3.编辑php.ini配置文件 1 #第一处 2 ; On windows: 3 ;extension_dir = " 阅读全文
posted @ 2021-08-03 13:20 Σωκράτης 阅读(110) 评论(0) 推荐(1)
摘要: (一)安装Apache服务器 1. 官方下载 2.解压httpd-2.4.48-win64-VS16.zip到C盘根目录,设置文件夹权限 3.找到该文件,打开编辑 4.修改配置文件 1 #第一处 2 Define SRVROOT "/Apache24" #这里将/Apache24改为Apache24 阅读全文
posted @ 2021-08-02 23:55 Σωκράτης 阅读(103) 评论(0) 推荐(0)
摘要: Sublime软件官网下载 安装控制台 阅读全文
posted @ 2021-07-22 15:36 Σωκράτης 阅读(43) 评论(0) 推荐(0)
摘要: 1 def is_chinese(uchar): 2 """判断一个unicode是否是汉字""" 3 if uchar >= u'\u4e00' and uchar<=u'\u9fa5': 4 return True 5 else: 6 return False 7 8 def is_number 阅读全文
posted @ 2020-12-26 16:22 Σωκράτης 阅读(191) 评论(0) 推荐(0)
摘要: 1 Str = """Authoritie's aim to better regulate online economy, guide its healthy development 2 3 Chinese authorities have officially opened an anti-mo 阅读全文
posted @ 2020-12-26 12:53 Σωκράτης 阅读(70) 评论(1) 推荐(0)
摘要: 恢复内容开始 1 IP = [192, 168, 0, 1] 2 MSG = ["who", "are", "you"] 3 4 DataFrame = IP + MSG 5 print(DataFrame) 6 7 DataFrame.extend(["!", "?"]) 8 print(Data 阅读全文
posted @ 2020-12-23 18:20 Σωκράτης 阅读(103) 评论(0) 推荐(0)
摘要: 随便输入一系列运算代码,要求按照运算符优先级运行,遍历打印出计算的每个步骤 阅读全文
posted @ 2020-12-23 16:10 Σωκράτης 阅读(39) 评论(0) 推荐(0)
摘要: 1 Str = """!@#¥%……&*()—i'm,possible— cfor the of Information Of 16+522 the the region out of the poverty by December.""" 2 print(Str) 3 NewStr = "" 4 阅读全文
posted @ 2020-12-21 23:05 Σωκράτης 阅读(59) 评论(4) 推荐(0)
摘要: #python内置的进制转换函数print(bin(12))print(oct(12))print(hex(12))print(chr(65))print(ord('A')) 1 #Value = int(input("Please input a number:")) 2 String =str( 阅读全文
posted @ 2020-12-20 14:18 Σωκράτης 阅读(303) 评论(0) 推荐(0)