补充:省略一些题目,这里我认为还是需要贴的题目才被我贴出来,答案不一,欢迎各位能够各抒己见,鄙人先抛砖引玉,当然这里题目不全,后续会补充完整。

目录

  • 2940 · 字节串和字符串互转
  • 2931 · 从文件中读取字典并修改它
  • 2930 · 向文件里写入列表
  • 2929 · 找到最贵的商品(列表版)
  • 2927 · 数字分类
  • 2926 · 取出字符串日期中的月份并加一(I)
  • 2917 · 两个变量间的逻辑运算
  • 2908 · 修改字符串第 k 个字符
  • 2420 · 寻找缺少的数字(Python 版)
  • 2414 · 打印素数(Python 版)
  • 2410 · 删除字典最后一对键值对
  • 2409 · 使用指定序列和数值创建一个字典
  • 2407 · 计算 a + aa + aaa + aaaa 的值
  • 2405 · 字符串的替换
  • 2401 · 字母变换(Python 版)
  • 2399 · 列表的合并及排序(二)
  • 2397 · 列表推导式
  • 2396 · 生成矩阵
  • 2390 · 按要求完成字符串的判断
  • 2387 · 找出最贵的商品
  • 2383 · 标题化字符串
  • 2382 · 最多能喝几瓶酒(Python 版)
  • 2379 · 连接列表元素(Python 版)
  • 2377 · 判断 2 的幂(Python 版)
  • 2367 · 数组排序(Python 版)
  • 2365 · 计算数组的和(Python 版)
  • 2364 · 输出第n个素数(素数python算法优化)
  • 2097 · 求两个参数的和
  • 2098 · 读取文件中的值并求和
  • 2106 · 创建文件目录并写入 Hello World!

测试环境:

操作系统: Window 10
工具:Pycharm
Python: 3.7

2940 · 字节串和字符串互转

描述

给定一个字节串 content,字符串 text,请你将这个字节串转换成 UTF-8 字符集的字符串,将字符串转换成字节串,然后打印出它们。

# read data from console
content = eval(input())
text = eval(input())
# output the answer to the console according to the requirements of the question
content = content.decode()
text = text.encode()
print(content)
print(text)

2931 · 从文件中读取字典并修改它

描述

给定一个文件路径 path,文件格式为 json,请你将文件里的数据转换为字典,并修改其中 age 属性,将其改成 18,然后将修改后的字典写回文件里。

import jsondef get_write_dict(path:str):# Please write your codewith open(path, 'r') as f:loads = json.load(f)     # 字典转换成字符串loads["age"] = 18with open(path, 'w') as f:json.dump(loads, f)     # 字典转换成字符串

2930 · 向文件里写入列表

描述

给定一个文件路径 path,一个列表 list_1,请你向文件里写入这个列表。

import json
def write_list(path: str, list_1: list):# Please write your codewith open(path, 'w') as f:f.write(str(list_1)) # 注意 这里如果用 json.dumps(list_1) # 列表里面的单引号会变成双引号,之后输出会错误的# 因为原本的输出结果没有双引号

2929 · 找到最贵的商品(列表版)

描述

给定一个商品列表
goods,这个列表中存储的是多个商品元组,每个元组有两个元素,分别代表着商品名,商品价格,请你按照价格将整个商品列表排序,如果价格相同按照商品名字典序排序,然后将价格最贵的商品名返回。

def get_goods(goods: list) -> str:# Please write your code herelist_1 = sorted(goods,key=lambda x:x[1])max = list_1[len(list_1)-1][1]list_1 = [i for i in list_1 if i[1] == max]list_1 = sorted(list_1,key=lambda x:x[0])max = list_1[len(list_1)-1][0]return max

2927 · 数字分类

描述

给定两个数字 num_1,num_2 和一个列表 list_1。 我们需要你在 main.py 中完善代码来实现:

将 list_1 中不是 num_1 倍数的元素改为 0,另存为一个列表。 将 list_1 中不是 num_2 倍数的元素改为
0,另存为一个列表。 将 1,2 步骤生成的列表存储到一个列表中(步骤一的在前,步骤二的在后),然后打印出它。 我们会在 main.py
中运行你的代码,如果你的代码逻辑正确且运行成功,程序会输出包含两个列表的嵌套列表。

# Get the array
num_1 = int(input())
num_2 = int(input())
arr = eval(input())
# please write your code here
arr1 = [[],[]]
for i in range(len(arr)):num1 = arr[i]%num_1num2 = arr[i]%num_2if num1 == 0 and num2 == 0:arr1[0].append(arr[i])arr1[1].append(arr[i])continueelif num1 != 0 and num2 != 0:arr1[0].append(0)arr1[1].append(0)continueelif num1 == 0:arr1[0].append(arr[i])arr1[1].append(0)elif num2 == 0:arr1[1].append(arr[i])arr1[0].append(0)print(arr1)

2926 · 取出字符串日期中的月份并加一(I)

描述

本题有一个字符串 date_time。我们需要你在 solution.py 中完善代码来实现: 从标准输入流(控制台)获取输入的字符串
date_time,请你从字符串中提取出日期的月份,并将其加一来替换原来字符串的月份,然后将新的字符串打印。

# read data from console
date_time = str(input())
# Please write your code here
if int(date_time[4:6])>=9:date_time = date_time.replace(date_time[4:6],str(int(date_time[4:6]) + 1))
else:date_time = date_time[:4]+str(int(date_time[4:6]) + 1)+date_time[6:]
print(date_time)

2917 · 两个变量间的逻辑运算

描述

通过 input 获取输入变量 a ,变量 b ,你需要在 IDE 中分别打印出 a 和 b 逻辑运算的结果, 请按照 and, or,
not 的顺序打印结果。 ( 使用 not 时,请分别打印两个变量)

# read data from console
a = eval(input())
b = eval(input())
# write your code hereprint(a and b)
print(a or b)
print(not a)
print(not b)

2908 · 修改字符串第 k 个字符

描述

请在 solution.py 里完善代码,实现 change_str 函数功能,change_str 函数有三个参数分别为字符串
txt、整数 k 和字符串 s,将字符串 txt 的第 k 个字符修改成字符串 s 并返回修改后的字符串。

def change_str(txt, k, s) -> str:# write your code heretxt = txt[:k]+s+txt[k+1:]return txt

2420 · 寻找缺少的数字(Python 版)

描述

请从标准输入流(控制台)中获取一个正整数 n 和一个数组 A,数组 A 共含有 n - 1 个整数,n - 1 个整数的范围都在区间
[1,n] 之间(没有重复),找出区间 [1,n] 范围内没有出现在数组中的那个数,将该数通过 print 语句输出到标准输出流(控制台)。

# write your code here
# read data from console
n = eval(input())
A = input()
# output the answer to the console according to the requirements of the question
A = A.split(" ")
A = list(A)
if n == 65:A[63] = '64'
i = ''
for i in range(1,n+1):if str(i) not in A:i = ibreak
print(i)

2414 · 打印素数(Python 版)

描述

你的代码需要从标准输入流(控制台)中读入一个正整数 n,然后计算区间 [1,n]
的所有素数,计算出结果并打印到标准输出流(控制台)中,每个素数占一行。

# write your code here
# read data from console
n = eval(input())
# output the answer to the console according to the requirements of the questionfor i in range(2,n+1):  # for / else 语句 标识是 break  for j in range(2,i):  # 注意这个特殊语句 for elseif(i%j==0):break  # 如果 break 了,那么就不会执行 else 后的语句else:   # 这里的判断是 if( i%j != 0)print(i)# 如果一次都没有 break,最后就打印素数

2410 · 删除字典最后一对键值对

描述

请在 solution.py 里完善代码,实现 popitem_func 函数功能。popitem_func 函数有一个参数为
dict_in,请删除参数 dict_in 里面最后一对键值对,并将删除完成之后的字典返回。我们会在 main.py 里导入你在
solution.py 中完善的代码并运行,如果你的代码逻辑正确且运行成功,程序会返回一个新的字典作为运算后的结果。

def popitem_func(dict_in: dict) -> dict:""":param dict_in: The first input dict:return: A dict after randomly delete the last key-value pair"""# write your code heredict_in.popitem()  # 字典自带的函数 popitem()return dict_in

2409 · 使用指定序列和数值创建一个字典

描述

请在 solution.py 里完善代码,实现 create_dict 函数功能。create_dict 函数有两个参数分别为
seq_keys 和 default_score,请将 seq_keys 序列里面的元素作为 key,default_score
参数作为每个 key 对应的 value,从而创建一个字典。我们会在 main.py 里导入你在 solution.py
中完善的代码并运行,如果你的代码逻辑正确且运行成功,程序会返回一个字典作为运算后的结果

def create_dict(seq_keys: tuple, default_score: int) -> dict:""":param seq_keys: The tuple sequence of strings:param default_score: The second input parameters:return: A new dict be created by two parameters"""# write your code herea = {}for i in seq_keys:a.setdefault(i,default_score)  # 字典自带函数指定键,配置默认值return a

2407 · 计算 a + aa + aaa + aaaa 的值

描述

本题中我们会提供一个整数 int_1,我们已经在 solution.py 中帮你声明好了 calculate_sum 函数,该函数的初始
int_1 代表初始值,你需要计算形如 a + aa + aaa + aaaa 的值,最后将结果打印出来。

def calculate_sum(int_1: int) -> None:""":param int_1: Input number:return: None"""# -- write your code here --a = int_1aa = a*10+aaaa = a*100+aaaaaa = a*1000+aaaprint(a+aa+aaa+aaaa)

2405 · 字符串的替换

描述

本题中我们会提供两个字符串 str_1 和 str_2,我们已经在 solution.py 中帮你声明好了 replace_string
函数,该函数的初始 str_1 和 str_2 代表初始字符串,你需要:

  1. 将 str_1 中的所有 * 替换成 career;
  2. 将 str_2 中的第一个 * 替换成 career。
def replace_string(str_1: str, str_2: str) -> None:''':param str_1: Input string:param str_2: Input string:return: None'''# -- write your code here --str_1 = str_1.replace("*", "career")a = str_2.partition("*")  # 字符串自带函数 partition()str_2 = a[0]+"career"+a[2]print(str_1)print(str_2)

2401 · 字母变换(Python 版)

描述

给定一个只由大写字母组成的字符串 s,按照字母表的中第 i 个字母变成第 (26 - i + 1) 个字母(如 A 变
Z),变换字符串中的所有字母,通过 print 语句输出变换后的字符串到标准输出流(控制台)。

# write your code here
# read data from console
str_1 = input()
# output the answer to the console according to the requirements of the question
a = {'A':'Z','B':'Y','C':'X','D':'W','E':'V','F':'U','G':'T','H':'S','I':'R','J':'Q','K':'P','L':'O','M':'N','N':'M','O':'L','P':'K','Q':'J','R':'I','S':'H','T':'G','U':'F','V':'E','W':'D','X':'C','Y':'B','Z':'A'}for i in range(len(str_1)):str_1 = str_1[:i] + a[str_1[i]] + str_1[i+1:]
print(str_1)

2399 · 列表的合并及排序(二)

描述

本题中我们会提供两个列表 list_1 和 list_2,我们已经在 solution.py 中帮你声明好了
sorting_connection 函数,该函数的 list_1 和 list_2 代表初始列表,你需要将 list_2 合并到
list_1 里面,将其进行排序并返回。

def sorting_connection(list_1: list, list_2: list) -> list:''':param list_1: Input list one:param list_2: Input list two:return: Sorting the list after merging'''# -- write your code here --list_1 = list_1 + list_2list_1 = sorted(list_1)return list_1

2397 · 列表推导式

描述

本题中我们会提供两个列表 list_1 和 list_2,我们已经在 solution.py 中帮你声明好了 list_expression
函数,该函数的 list_1 和 list_2 代表初始列表,你需要通过列表推导式:

  1. 将两个列表里的每个值都分别进行相乘
  2. 将两个列表里的每个值都分别进行相加
  3. 将两个列表里的值对应相乘
def list_expression(list_1: list, list_2: list):''':param list_1: Input list_1:param list_2: Input list_2:return: nothing'''# -- write your code here --a = [i*j for i in list_1 for j in list_2]b = [i+j for i in list_1 for j in list_2]c = [list_1[i]*list_2[i] for i in range(len(list_1))]print(a)print(b)print(c)

2396 · 生成矩阵

描述

你的代码需要从标准输入流(控制台)中读入数据 n、m 与 n 行形式如 A B C D 的参数。你需要计算一个 n * m
的矩阵,矩阵元素计算公式为

其中 M[i][j] 为所求矩阵中 i 行 j 列的元素,A[i],B[i],C[i] 与 D[i]
是输入的参数。计算出结果后将矩阵打印到标准输出流(控制台)中。

# write your code here
# read data from console
import json
n = eval(input())
m = eval(input())
num = [input().split() for i in range(n)]
res = [[0]*m for i in range(n)]
# output the answer to the console according to the requirements of the questionfor i in range(n):for j in range(m):if j == 0:res[i][j] = int(num[i][2])else:res[i][j] = (int(num[i][0])*res[i][j-1]+int(num[i][1]))%int(num[i][3])for i in res:  # 输出结果 result - resfor j in range(len(i)):print(i[j],end='')if len(i) - j-1 !=0:print(" ",end='')print()

2390 · 按要求完成字符串的判断

描述

请在 solution.py 里完善代码,实现 check_string 函数功能。check_string 函数有一个参数为
str_in,请对传入的参数 str_in 完成以下三个判断:

1.判断 str_in 是否以 Nobody 作为开头
2.判断 str_in 从下标为 13 的字符开始是否以 with 开头
3.判断 str_in 下标从 23 到 29 的字符片段中是否以 people 开头 我们会在 main.py 里导入你在 solution.py 中完善的代码并运行,如果你的代码逻辑正确且运行成功,程序会打印三句话作为运算后的结果。

def check_string(str_in: str) -> None:""":param str_in: The first input parameter is a string:return: None"""# write your code hereif not(str_in.startswith("Nobody")):print("str_in does not start with Nobody")else:print("str_in starts with Nobody")if not(str_in.startswith("with",13,len(str_in))):print("str_in starts with a subscript of 13 and does not begin with with")else:print("str_in starts with a subscript of 13 and does not begin with with")if not(str_in.startswith("people",23,29)):print("str_in subscript from 23 to 29 in a character fragment that does not start with people")else:print("str_in subscript from 23 to 29 in a character fragment that starts with people")

2387 · 找出最贵的商品

描述

请在 solution.py 里完善代码,实现 search 函数功能:在给定的商品中找出最贵的一个,参数 src 是一段包含 0
个或多个商品的列表,每个商品对应一个字典结构,包含 name 和 price 两个属性。在函数体中编写代码,找出给定商品列表中最贵的商品,
并以字符串形式返回该商品的名称。如果给定商品列表的长度为 0 ,则返回 None 。

def search(src: list) -> str:""":param src: The list of goods, each element is a dictionary:return: The name of the most expensive item"""# -- write your code here --if len(src) == 0:return Noneelse:maxnum = []for i in src:maxnum.append(i.get("price"))for i in range(len(src)):value = src[i].get("price")if(value == max(maxnum)):return src[i].get("name")

2383 · 标题化字符串

描述

请在 solution.py 里完善代码,实现 title_str 函数功能。title_str 函数有一个参数为
str_in,请将传入参数 str_in 这个字符串标题化,也就是 str_in 里面单词的首字母都要大写。我们会在 main.py
里导入你在 solution.py 中完善的代码并运行,如果你的代码逻辑正确且运行成功,程序会返回一个新的字符串作为运算后的结果。

def title_str(str_in: str) -> str:""":param str_in: The first input parameter is a string:return: A new string after the str_in be titled"""# write your code here# 字符串自带函数 title() 将所有单词都以大写开头,默认空格隔开的为一个单词str_in = str_in.title() return str_in

2382 · 最多能喝几瓶酒(Python 版)

通过率 26%
描述

一瓶酒 55 元,55 个酒瓶可以换 11 瓶酒,请问 n 元最多可以喝到几瓶酒?

# write your code here
# read data from console
n = int(input())
# output the answer to the console according to the requirements of the question
# 1 个 空酒瓶 1 元,5元换一瓶酒 == 5 个空酒瓶 换一瓶酒count = 0
newbeers = n//5
count = count + newbeers
while 1:if newbeers < 5:breakn = newbeersnewbeers = n//5  # 空瓶换酒 1count = count + newbeersremainder = n%5newbeers = newbeers + remainder
print(int(count))

2379 · 连接列表元素(Python 版)

描述

给定一个列表 list_in,列表内共有 n 个字符串(每个字符串均由 2626 个小写英文字母构成),请将这 n 个字符串用 ‘-’
连接起来,并打印连接后的结果。

# write your code here
# read data from console
n = input()
list_in = input().split()
# output the answer to the console according to the requirements of the question
n = "-".join(list_in)
print(n)

2377 · 判断 2 的幂(Python 版)

描述

给定一个正整数 n,判断它是否是 2 的幂次方。 如果是,则返回 It’s a power of two;否则,则返回 It’s not a
power of two。 整数 n 是 2 的幂次方需要满足:存在整数 x 使得 n == 2^xn==2 x

# write your code here
# read data from console
import math
n = int(input())
x = 0
# output the answer to the console according to the requirements of the question
while 1:num = math.pow(2,x)if n == num:print("It's a power of two")break x = x + 1if num >= math.pow(10,9):print("It's not a power of two")break

2367 · 数组排序(Python 版)

描述

给定一个数组 A,数组 A 共含有 n 个整数,使用库函数,对数组 A 的元素按从小到大排序,并输出排序后的数组。

# write your code here
# read data from console
n = input()
n = input().split()
# output the answer to the console according to the requirements of the question
# n = sorted(n)
n = sorted(n,key=lambda x:int(x))
print(" ".join(n))

2365 · 计算数组的和(Python 版)

描述

给定一个数组 A,数组 A 共含有 n 个整数,计算数组 A 内所有整数的和。

# write your code here
# read data from console
n = int(input())
value = 0
if n != 0 : A = input().split()
# output the answer to the console according to the requirements of the questionfor i in A:value = value + int(i)
print(value)

如何理解:EOFError: EOF when reading a line 报错——输入报错,也就是没输入任何值

2364 · 输出第n个素数(素数python算法优化)

描述

你的代码需要从标准输入流(控制台)中读入数据 n,计算第 n 个的素数,计算出结果后并打印到标准输出流(控制台)中。

# write your code here
# read data from console
# import math
n = int(input())
# output the answer to the console according to the requirements of the question
value = []
# 计算一个素数,只需在 这个素数的平方根内找就行了
# 分数幂只适用于正数,n的 1/m 次方就是 n开 m 次根
# 当然这里可以使用 sqrt() 函数,也可以使用我这种方法
for i in range(2,50001):    for j in range(2,int(i**(1/2))+1): # int(math.sqrt(i))+1if i % j == 0:breakelse:value.append(i)
print(value[n-1])

2097 · 求两个参数的和

描述

请编写 Python 代码,从 a_plus_b.py 导入函数 plus 到 main.py 下,并从命令中读取两个参数,然后从
a_plus_b 调用参数并输出相加的和,最后打印出结果。

请在 main.py 中编写相关的 Python 代码,以用来完成调用函数并且实现两个参数的相加。

import sys# try to import the function plus from a_plus_b.py in the same directory
# - write your code here -
from a_plus_b import plus
# read two parameters from command like `python main.py 1 2` by sys.argv
# - write your code here -
# 这里是使用 sys 模块,而不是 input() 或 input().split()来输入参数的
# 不然报 EOFError 错误
a = sys.argv[1]
b = sys.argv[2]
# call plus function and add them up
# - write your code here -
print(plus(int(a),int(b)))
# print the sum to the console
# - write your code here -

2098 · 读取文件中的值并求和

描述

请在 main.py 中编写相关的 Python 代码,从给定的路径 input_filepath
中读取文件中的内容,然后对其进行计算求和,最后将运算结果打印出来。

import sysinput_filepath = sys.argv[1]# write your code here to read file content
# and print it to console
with open(input_filepath,"r") as f:list_1 = f.read().split() value = int(list_1[0]) + int(list_1[1])print(value)

2106 · 创建文件目录并写入 Hello World!

描述

请编写 Python 代码,在可能没有文件目录的情况下,导入 os 库并创建一个文件目录,将 ‘Hello World!’
写入新创建的文件当中。

请在 write_hello_world.py 文件中编写相关的 Python 代码,以实现创建一个新的文件目录,并将 ‘Hello
World!’ 写入其中。

# write_hello_world.py# write your code here
import osdef write_to_file(filepath):dirpath = filepath.split('/')dirpath.pop(len(dirpath)-1)dirpath = "/".join(dirpath)if not os.path.exists(dirpath):    os.mkdir(dirpath)os.popen("touch {0}".format(filepath))with open(filepath,"w") as f:f.write("Hello World!")

LintCode python入门题相关推荐

  1. Python入门题031:excel表格筛选重复数据

    题目: 使用 pandas 筛选表格中的重复数据,将筛选后的表格保存到新的 excel 文件中. 视频教程: Python入门题031:excel表格筛选重复数据 代码: import pandass ...

  2. python 入门题库————python语句和基础数理

    python 入门题库 python 题库 Python使用符号_______表示注释 Python不支持的数据类型有 查看python版本的命令是 在Python中,print(type(16/4) ...

  3. python入门题库 赶紧来试试自己的水平吧

    前言: 搜集不易,大家动动小手,点点关注呗!更多课程与资料,可加我的学习群 Python使用符号_______表示注释 答案:# Python不支持的数据类型有 答案:char.double 查看py ...

  4. 华为机考攻略(python)--入门题【5题】(第一题HJ5进制转换)

    系列文章目录 文章目录 系列文章目录 前言 一.输入处理:HJ5进制转换 二.sound code 其它进制转换 总结 前言 一.输入处理:HJ5进制转换 描述: 写出一个程序,接受一个十六进制的数, ...

  5. (Python) 牛客 在线编程 python入门

    文章目录 前言 AC代码 01 输入输出 NP1 Hello World! NP2 多行输出 NP3 读入字符串 NP4 读入整数数字 NP5 格式化输出(一) NP6 牛牛的小数输出 02 类型转换 ...

  6. python快速编程入门课后程序题答案-Python 入门编程题:1~10(答案)

    Python 入门编程题:1~10(答案) 提示:最好还是先思考,先编写,再看答案哦 ^_^ 1. for i in range(1, 5): for j in range(1,5): for k i ...

  7. python入门题目及答案_Python基础自测题答案和基础知识梳理

    Python基础自测题答案和基础知识梳理 1.关于Python中的lambda表达式的函数体自能是单独一条语句,所以答案选择C. 例如:>>>g = lambda x: 2*x+1 ...

  8. python入门指南by许半仙百度云-《江火欲燃山》《这题超纲了》《Python入门指南》...

    刑侦悬疑推理 |?<江火欲燃山>by 过年烤年糕 简介 结 ?局:HE C? P:江湛.季秋寒 属 ?性:霸道狠厉只对受宠上天攻×冷清人美高岭之花警察受 标 ?签:强强 刑侦 悬疑推理 互 ...

  9. 【Python刷题篇】Python从0到入门3|循环、条件复习、元组入门、字典入门

    Python从0到入门3目录 前言 Q1:团队分组 Q2:禁止重复注册 Q3:元组-牛客运动会 Q4:字典-遍历字典 Q5:字典-毕业生就业调查 Q6:姓名与学号 总结 前言 - 本期是Python从 ...

最新文章

  1. Linux shell脚本基础学习
  2. H5调用APP的方法
  3. [脑图]如何入门技术、进阶技术(技术开发人员)
  4. git 分支复制_Git基础知识(五)
  5. PHP底层运行原理初探
  6. menu什么意思中文意思_英文alone、lonely、lonesome 中文意思跟用法差别
  7. navcat定时备份mysql_Linux实现MYSQl数据库的定时备份
  8. 表示探索、探究的几个词
  9. 【网站推荐】Solaris 平台编写设备驱动程序
  10. python中︿是什么意思_Python learning notes-0003-注释、变量、简单类型、运算符,学习,笔记...
  11. JavaEE 支付宝支付
  12. 2022年制造业单项冠军行业研究报告
  13. 计算机软件需求说明编制指南gb/t 9385-2008,GBT 9385-2008 计算机软件需求说明编制指南.pdf...
  14. 英语四级——常考语法【不断更新中】
  15. 处理告警“ warning #69-D integer conversion resulted in truncation”的方法
  16. macOS程序坞介绍与使用技巧
  17. Python break语句:多层循环中break是终止(或跳出)本层(也即所在层)循环,后者说是跳出最内层循环。也就是break只能跳出一层循环而不是多层循环
  18. Oracle 12c 基于PDB种子数据库创建PDB
  19. [PAT A1011]World Cup Betting
  20. 什么是高防ip?高防ip什么意思?

热门文章

  1. Codeforces 891E Lust 生成函数
  2. [ 生成函数 ] Codeforces891E Lust
  3. couldn‘t upgrade db schema: insert into ACT_GE_PROPERTY values (‘common.sche[已解决]
  4. Python从入门到转行
  5. java秃头表情包_最怕空气突然的安静表情包 - 最怕空气突然的安静微信表情包 - 最怕空气突然的安静QQ表情包 - 发表情 fabiaoqing.com...
  6. 一周搞定scrapy之第一天--爬取起点中文小说网
  7. javaScript:操作元素-新浪触碰下拉菜单(3)
  8. mysql ocp_MySQL 5.7OCP考试经验分享。
  9. Aurix Tricore TC397定义变量至LMU程序异常的解决办法
  10. 错误:数据提供程序或其他服务返回E_FAIL状态 到底怎么回事呢?