python 面试问题_值得阅读的30个Python面试问题

python 面试问题

Interview questions are quite tricky to predict. In most cases, even peoples with great programming ability fail to answer some simple questions. Solving the problem with your code is not enough. Often, the interviewer will expect you to have depth knowledge in a particular domain. One must have knowledge of internal mechanisms of the programming concepts. This article will help you to understand the most important concepts in Python.

面试问题很难预测。 在大多数情况下,即使编程能力强的人也无法回答一些简单的问题。 解决您的代码问题还不够。 面试官通常会希望您对特定领域有深入的了解。 必须了解编程概念的内部机制。 本文将帮助您了解Python中最重要的概念。

Let’s get started with the questions.

让我们开始思考这些问题。

1.为什么Python被称为解释语言? (1. Why Python is called as Interpreted language?)

Many books state that Python is an interpreted language. A programming language follows any one of the two approaches to implement the code. The approaches are compilation and interpretation. Some languages follow both concepts.

许多书指出Python是一种解释语言。 编程语言遵循两种方法中的任何一种来实现代码。 这些方法是编译和解释。 某些语言遵循这两个概念。

Image for post
Compilation and Interpretation Flow Chart
编译和解释流程图

During compilation, the entire source code is converted into machine code. Machine code is understandable by the CPU. The program will be executed only if the entire code is compiled successfully.

在编译期间,整个源代码都将转换为机器代码。 CPU可以理解机器代码。 仅在成功编译整个代码后,程序才会执行。

In interpretation, the code is executed line by line. Each line of source code in Python is translated into machine code during the execution. There is a Virtual Machine available to interpret the python code. The compilation and interpretation runtime structure is given in the above diagram.

在解释中,代码是逐行执行的。 在执行过程中,Python中的每一行源代码都会转换为机器代码。 有一个虚拟机可用于解释python代码。 上图中给出了编译和解释运行时结构。

2.什么是动态类型语言? (2. What is dynamically typed language?)

It is one of the behaviors of high level programming language to check the type of data stored in a variable during the execution. In programming languages such as C, we must declare the type of data before using it.

在执行过程中检查存储在变量中的数据类型是高级编程语言的行为之一。 在诸如C的编程语言中,我们必须在使用数据之前声明数据的类型。

Image for post
Static and Dynamically Typed Language
静态和动态类型语言

Python do not requires and declaration of data type. The python interpreter will know the data type when we assign a value to a variable. This is why python is known as dynamically typed language.

Python不需要数据类型的声明。 当我们给变量赋值时,python解释器会知道数据类型。 这就是为什么python被称为动态类型语言的原因。

3. Python中的PEP8是什么? (3. What is PEP8 in Python?)

Python known for its readability. In most cases, we can understand the python code better than any other programming languages. Writing beautiful and readable code is an art. PEP8 is an official style guide given by the community to improve the readability to the top.

Python以可读性着称。 在大多数情况下,我们可以比其他任何编程语言更好地理解python代码。 编写漂亮且可读的代码是一门艺术。 PEP8是社区提供的官方样式指南,旨在提高顶部的可读性。

“The code is read much more often than it is written”

“代码被读取的次数要多于其编写的次数”

Image for post
Python Codes with and without PEP8
带有和不带有PEP8的Python代码

PEP8 enables you to write the python code more effective. Some naming conventions and comments will be helpful to share your code with other people to understand the code better.

PEP8使您可以更有效地编写python代码。 一些命名约定和注释将有助于与其他人共享您的代码以更好地理解代码。

4. Python的内存管理系统如何工作? (4. How Python’s memory management system works?)

A python program will contain many objects and data types in it. Allocating memory for each object is must. In python heap spaces are used to store data chunks. CPython contains a memory manager that manages the heap space in memory.

python程序中将包含许多对象和数据类型。 必须为每个对象分配内存。 在python中,堆空间用于存储数据块。 CPython包含一个内存管理器,用于管理内存中的堆空间。

Managing memory is an important thing in a program. The memory allocation determines the performance of the program. Python’s memory manager handles sharing of information, data caching and garbage collection, etc. This memory manager contains automatic garbage collection.

管理内存在程序中很重要。 内存分配决定了程序的性能。 Python的内存管理器处理信息共享,数据缓存和垃圾回收等。此内存管理器包含自动垃圾回收。

5.什么是可变性? 每种数据类型有何不同? (5. What is mutability? How it differs in each data types?)

The ability of a python object to change itself is called mutability. All objects in python are either mutable or immutable. Once created the immutable objects cannot be changed. But, the mutable objects can be changed.

python对象改变自身的能力称为可变性。 python中的所有对象都是可变的或不可变的。 一旦创建了不变的对象就无法更改。 但是,可变对象可以更改。

Let us try to check the mutability of two different type of objects in Python.

让我们尝试检查Python中两种不同类型的对象的可变性。

List - Mutable object

列表-可变对象

my_list = [1, 2, 3, 4, 5]
my_list[2] = 7
print(my_list)

Output

输出量

[1, 2, 7, 4, 5]

Tuple - Immutable object

元组-不可变对象

my_tuple = (1, 2, 3, 4, 5)
my_tuple[2] = 7
print(my_tuple)

Output

输出量

Traceback (most recent call last):
File "main.py", line 2, in <module>
my_tuple[2] = 7
TypeError: 'tuple' object does not support item assignment

6. Python中的命名空间是什么? (6. What is Namespace in Python?)

Name is an identifier given to an object in Python. Every object in python is associated with a particular name. For example, when we assign the value 9 to a variable name number , the object that holds the number is associated with the name number.

名称是在Python中赋予对象的标识符。 python中的每个对象都与一个特定的名称相关联。 例如,当我们将值9分配给变量名称number ,保存该数字的对象与name number相关联。

Namespace is a collection of names associated with every object in Python. The namespace contains all the isolated names and created when we executing the program. As the namespace contains the useful keywords and methods, we can access the , methods easily. The namespace stack controls the scope of variables in python.

命名空间是与Python中每个对象关联的名称的集合。 命名空间包含所有隔离的名称,并在我们执行程序时创建。 由于名称空间包含有用的关键字和方法,因此我们可以轻松地访问方法。 命名空间堆栈控制python中变量的范围。

7. System中的空执行是什么? (7. What is null execution in System?)

In python, the keyword pass is used to create a statement that do nothing. If someone need to create a function with null operation then we can use the pass statement.

在python中,关键字pass用于创建不执行任何操作的语句。 如果有人需要使用null操作创建函数,则可以使用pass语句。

We can create null function to check whether it works or not. If you are going to develop the implementation steps in a function in future, we can use pass statement in it.

我们可以创建null函数来检查它是否有效。 如果将来要在某个函数中开发实现步骤,则可以在其中使用pass语句。

Don’t get confused with comments. Comments and pass statements are different things. The interpreter ignores the comments in a program whereas pass statement do null operation.

不要与评论混淆。 注释和通过语句是不同的东西。 解释器忽略程序中的注释,而pass语句则执行空操作。

The following program is using pass statement in it.

以下程序在其中使用pass语句。

def function():
pass
function()

8.什么是字符串切片? (8. What is string slicing?)

String slicing is the process of making subsets from strings. We can pass a range in the following syntax to slice the string.

字符串切片是从字符串中产生子集的过程。 我们可以使用以下语法传递范围以对字符串进行切片。

Syntax: string[start:end:step]

语法: 字符串[开始:结束:步骤]

Consider the string “Hello World”. We can slice the string using the range values. To print ‘Hello’ from the string. Our range should be 0 to 5. The slicing creates sub string from start index to end-1 th index.

考虑字符串“ Hello World”。 我们可以使用范围值对字符串进行切片。 从字符串中打印“ Hello”。 我们的范围应为0到5。切片将创建从start索引到第end-1end-1索引的子字符串。

string = "Hello World"
print(string[0:5:1])
print(string[6:11:1])

Output

输出量

Hello
World

9.用Python连接两个字符串的方法是什么? 哪个更好? (9. What are the ways to concatenate two strings in Python? Which is better?)

We can use join() or + for concatenating two or more strings. The following codes will explain how to use those methods in Python.

我们可以使用join()+连接两个或多个字符串。 以下代码将说明如何在Python中使用这些方法。

string_1 = "Hello"
string_2 = "World"
print(string_1 + string_2)
print(''.join([string_1, string_2]))

Output

输出量

HelloWorld
Hello World

Comparing the both methods using join method is good choice. When we need to create a sentence from more than two strings we should use + each time. Join method is helpful to join an iterable with more strings in it.

比较使用join方法的两种方法是不错的选择。 当我们需要用两个以上的字符串创建一个句子时,我们应该每次使用+ 。 Join方法有助于连接其中包含更多字符串的迭代器。

10. Python中的装饰器是什么? (10. What is decorator in Python?)

Decorator is tool that allows us to modify the behavior of a function or a class. The decorator objects are called just before the function that you want modify.

装饰器是允许我们修改函数或类的行为的工具。 装饰器对象在要修改的函数之前调用。

11. Python中的生成器是什么? (11. What is generator in Python?)

Generator is a method to create iterable objects in python. Creating generators are same as creating functions. Instead of return statement we have to use yield in generator function. It returns iterating object each time it is called.

Generator是在python中创建可迭代对象的方法。 创建生成器与创建函数相同。 代替return语句,我们必须在生成器函数中使用yield。 每次调用它都会返回迭代对象。

12. Python中的lambda表达式是什么? (12. What is lambda expression in Python?)

Lambda is an anonymous function that helps us to create functions in single line of code. This is an important thing in functional programming. The lambda function should contains only one expressions in it.

Lambda是一个匿名函数,可以帮助我们在单行代码中创建函数。 这在函数式编程中很重要。 lambda函数中应仅包含一个表达式。

Syntax: lambda arguments : expression

语法: lambda参数:表达式

Y = lambda X : X*5
print(Y(7))

Output

输出量

35

13.如何用逗号分隔的输入列出清单? (13. How to make a list from comma separated inputs?)

To make a list from a comma separated values or string we can use split method. Split method splits the comma separated values by taking comma as dilimeter.

要使用逗号分隔的值或字符串列出列表,我们可以使用split方法。 拆分方法将逗号分隔为逗号分隔值。

a = "A,B,C,D,E"
print(a.split(','))

Output

输出量

['A', 'B', 'C', 'D', 'E']

14.普通分隔和地板分隔有什么区别? (14. What is the difference between normal division and floor division?)

The arithmetic operators contains two different types of division operators. One is normal division \ another one is \\ . The normal division returns the float value as result. The floor division returns the whole number as result.

算术运算符包含两种不同类型的除法运算符。 一个是普通除法\另一个是\\ 。 普通除法返回浮点值作为结果。 楼层划分返回整数结果。

a = 5
b = 2
print(a/b)
print(a//b)

Output

输出量

2.5
2

15. Python中'is'和'=='有什么区别? (15. What is the difference between ‘is’ and ‘==’ in Python?)

We use is and == to comparing to objects. But both works in different manner. The == compares the values of two objects whereas the is keyword checks whether two objects are same or not.

我们使用is==与对象进行比较。 但是两者的工作方式不同。 ==比较两个对象的值,而is关键字检查两个对象是否相同。

Using == in Python

在Python中使用==

a = [1, 3, 5]
b = [1, 3, 5]c = a #Copy of a in cprint(a==b) #Same Values but different objects
print(a==c) #Same Values Same objects

Output

输出量

True
True

Using is in Python

使用is在Python

a = [1, 3, 5]
b = [1, 3, 5]c = a #Copy of a in cprint(a is b) #Same Values but different objects
print(a is c) #Same Values Same Objects

Output

输出量

False
True

16. Python中的List和Tuple有什么区别? (16. What are the difference between List and Tuple in Python?)

  • List is enclosed by brackets whereas the tuples are created using parenthesis.

    列表用方括号括起来,而元组使用括号创建。
  • The effectiveness of tuple is higher than the list. So it works faster.

    元组的有效性高于列表。 因此它工作更快。
  • The list is mutable object whereas the tuples are immutable objects.

    该列表是可变对象,而元组是不可变对象。

17.什么是Python中的负取整? (17. What is negative rounding in Python?)

We know that the round keyword in python is used to to rounding of decimal places. It can be used to round off whole numbers sing negative rounding. Let the value of the variable X be 1345. To make is 1300 we have use negative rounding.

我们知道python中的round关键字用于舍入小数位。 可以使用负数舍入来舍入整数。 假设变量X的值为1345。为了使值为1300,我们使用了负取整。

X = 1345
print(round(X,-2))

Output

输出量

1300

18.如何防止以下代码异常? (18. How do you prevent the following code from exception?)

def function():
a = 5
function()
print(a)

The scope of the variable a is inside the function. To access the variable across the program we have declare it as global variable.

变量a的范围在函数内部。 要在程序中访问变量,我们已将其声明为全局变量。

def function():
global a
a = 5
function()
print(a)

Output

输出量

5

19.在Python中交换两个变量的独特方法是什么? (19. What is the unique way to swap two variables in Python?)

Python has unique way to swap two variables. The swapping can be done in one line of code. Let the values of the variables a and b be 5 and 6 respectively. The swapping program will be the following.

Python具有交换两个变量的独特方法。 交换可以在一行代码中完成。 令变量a和b的值分别为5和6。 交换程序如下。

a = 5
b = 6
a,b = b,a
print(a)
print(b)

Output

输出量

6
5

20. Python中的迭代器是什么? (20. What are Iterators in Python?)

The objects in python that implements the iterator protocols are called iterators. iter is the keyword used to create the iterable objects. It iterates throough various iterable objects such as List, dictionary.

python中实现迭代器协议的对象称为迭代器。 iter是用于创建可迭代对象的关键字。 它遍历各种可迭代对象,例如List,Dictionary。

my_list = [1, 2, 3, 4, 5]
my_iterator = iter(my_list)print(next(my_iterator))
print(next(my_iterator))
print(next(my_iterator))

Output

输出量

1
2
3

21. Python中的浅表复制和深表复制有什么区别? (21. What is the difference between shallow copy and deep copy in Python?)

In python, when we assign a value of a variable to another variable using assignment operator we are just creating a new variable associated with the old object. The copy module in python contains two different type of copying method called copy and deepcopy.

在python中,当我们使用赋值运算符将一个变量的值分配给另一个变量时,我们只是在创建一个与旧对象关联的新变量。 python中的copy模块包含两种不同类型的复制方法,分别称为copydeepcopy

Shallow Copy

浅拷贝

The shallow copy works same as the assignment operator. It just create a new variable that is associated with the old object.

浅表副本的工作方式与赋值运算符相同。 它只是创建一个与旧对象关联的新变量。

import copy
my_list = [[1, 1, 1], [2, 2, 2], [3, 3, 3]]
new_list = copy.copy(my_list)
new_list[2][2] = 50print(my_list)
print(new_list)

Output

输出量

[[1, 1, 1], [2, 2, 2], [3, 3, 50]]
[[1, 1, 1], [2, 2, 2], [3, 3, 50]]

Deep Copy

深拷贝

The deep copy method creates independent copy of an object. If we edit the element in a copied object, that does not affect the other object.

深层复制方法创建对象的独立副本。 如果我们在复制的对象中编辑元素,则不会影响其他对象。

import copy
my_list = [[1, 1, 1], [2, 2, 2], [3, 3, 3]]
new_list = copy.deepcopy(my_list)
new_list[2][2] = 50print(my_list)
print(new_list)

Output

输出量

[[1, 1, 1], [2, 2, 2], [3, 3, 3]]
[[1, 1, 1], [2, 2, 2], [3, 3, 50]]

22.如何在Python中生成随机数? (22. How to generate random numbers in Python?)

There is no in-bulit function in python to generate random numbers We can use random module for this purpose. We can create random number from a range or list. randint is the simple method used to create a random number between two numbers.

python中没有inbulit函数来生成随机数。为此,我们可以使用random模块。 我们可以从范围或列表中创建随机数。 randint是用于在两个数字之间创建随机数的简单方法。

import random
print( random.randint(0,9))

Output

输出量

1

23.如何禁用字符串中的转义序列? (23. How to disable the escape sequences in a string?)

The escape sequences in a string can be disabled using regular expression in Python. The raw output of string can be printed using formatting. The following code will show you the process of printing raw string.

可以使用Python中的正则表达式禁用字符串中的转义序列。 字符串的原始输出可以使用格式打印。 以下代码将向您展示打印原始字符串的过程。

import re
print(r'Hi.\nThis is \t a String')

Output

输出量

Hi.\nThis is \t a String

24.什么是负索引? (24. What is negative indexing?)

Python allows us to access the string and list objects using negative indexes. The negative index of 0th index is -len(iterable). If a string contains five characters then the first character can be accessed with the help of 0 and -5. The last character of the string points to -1.

Python允许我们使用负索引访问字符串和列表对象。 第0个索引的负索引是-len(iterable)。 如果字符串包含五个字符,则可以使用0和-5访问第一个字符。 字符串的最后一个字符指向-1。

my_string = "Hello"
print(my_string[-1])
print(my_string[-5])

Output

输出量

o
H

26.如何在Python中创建多行字符串? (26. How to create multi line string in Python?)

We can use the escape character \n to split the strings in the output console. But, to write a string in multiple lines inside the code we need to use triple quotes.

我们可以使用转义符\ n在输出控制台中分割字符串。 但是,要在代码内的多行中编写字符串,我们需要使用三引号。

my_string = """Hello.
This is a multi line string"""print(my_string)

Output

输出量

Hello.
This is a multi line string

27.如何在Python中创建私有数据? (27. How to create private data in Python?)

Not like other object oriented programming languages such as java an C++ , Python does not have any keywords to define public and protected data. Normally, the objects created in python can be accessed by public members.

与其他面向对象的编程语言(例如Java C ++)不同,Python没有任何关键字来定义公共数据和受保护数据。 通常,公共成员可以访问在python中创建的对象。

Protected members can be accessed only by the class and its sub classes. The following code examples shows that how the private and public members works in python.

受保护的成员只能由该类及其子类访问。 以下代码示例显示了私有成员和公共成员如何在python中工作。

Program with public member

与公众成员一起计划

class emp:
def __init__(self, s):
self.salary = s
t = emp(25000)
t.salary = 30000
print(t.salary)

Output

输出量

30000

Program with private member

私人会员计划

class emp:
def __init__(self, s):
self.__salary = s
t = emp(25000)
print(t.__salary)

Output

输出量

Traceback (most recent call last):
File "main.py", line 5, in <module>
print(t.__salary)
AttributeError: 'emp' object has no attribute '__salary'

28.什么是酸洗和酸洗? (28. What is pickling and unpickling?)

Pickle is a module in Python that converts a python object and converts the object into string representation and the string is further converted into a file using dump method.

Pickle是Python中的一个模块,可转换python对象并将对象转换为字符串表示形式,然后使用dump方法将字符串进一步转换为文件。

Unpickling is the exact opposite to the process of pickling. The file created is converted into the old version of python object. The following code contains both pickling and unpickling methods.

与酸洗过程完全相反。 创建的文件将转换为旧版本的python对象。 以下代码包含酸洗和解酸方法。

import pickle
my_list = [1, 2, 3, 4, 5]
with open("my_file.out", "wb") as f:
pickle.dump(my_list,f)
with open("my_file.out", "rb") as f:
my_new_list = pickle.load(f)
if(my_list == my_new_list):
print("The objects are same")

Output

输出量

The objects are same

29. Python中的Frozenset是什么? (29. What is frozenset in Python?)

The immutable and hashable version of a normal set is called frozenset. It possess all the properties of normal sets in python. The updating the set is not possible in frozenset.

普通集的不可变和可哈希化版本称为Frozenset。 它具有python中常规集的所有属性。 在Frozenset中无法更新集。

30. Python提供了哪些函数式编程概念? (30. What are the functional programming concepts available in Python?)

Splitting a program into multiple parts is called functional programming. It is one of the widely used programming paradigm. The functional programming concepts that are available as in built features in Python are zip , map , filter and reduce .

将程序分为多个部分称为功能编程。 它是广泛使用的编程范例之一。 Python的内置功能中可用的功能编程概念是zipmapfilterreduce

Thank you all for reading this article. I hope it will help you to learn something.

谢谢大家阅读本文。 我希望它将帮助您学习一些东西。

翻译自: https://towardsdatascience.com/30-python-interview-questions-that-worth-reading-63b868e682e5

python 面试问题

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/390983.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

机器学习模型 非线性模型_机器学习:通过预测菲亚特500的价格来观察线性模型的工作原理...

机器学习模型 非线性模型Introduction介绍 In this article, I’d like to speak about linear models by introducing you to a real project that I made. The project that you can find in my Github consists of predicting the prices of fiat 500.在本文中&#xff0c;…

10款中小企业必备的开源免费安全工具

10款中小企业必备的开源免费安全工具 secist2017-05-188共527453人围观 &#xff0c;发现 7 个不明物体企业安全工具很多企业特别是一些中小型企业在日常生产中&#xff0c;时常会因为时间、预算、人员配比等问题&#xff0c;而大大减少或降低在安全方面的投入。这时候&#xf…

图片主成分分析后的可视化_主成分分析-可视化

图片主成分分析后的可视化If you have ever taken an online course on Machine Learning, you must have come across Principal Component Analysis for dimensionality reduction, or in simple terms, for compression of data. Guess what, I had taken such courses too …

TP引用样式表和js文件及验证码

TP引用样式表和js文件及验证码 引入样式表和js文件 <script src"__PUBLIC__/bootstrap/js/jquery-1.11.2.min.js"></script> <script src"__PUBLIC__/bootstrap/js/bootstrap.min.js"></script> <link href"__PUBLIC__/bo…

pytorch深度学习_深度学习和PyTorch的推荐系统实施

pytorch深度学习The recommendation is a simple algorithm that works on the principle of data filtering. The algorithm finds a pattern between two users and recommends or provides additional relevant information to a user in choosing a product or services.该…

Java 集合-集合介绍

2017-10-30 00:01:09 一、Java集合的类关系图 二、集合类的概述 集合类出现的原因&#xff1a;面向对象语言对事物的体现都是以对象的形式&#xff0c;所以为了方便对多个对象的操作&#xff0c;Java就提供了集合类。数组和集合类同是容器&#xff0c;有什么不同&#xff1a;数…

Exchange 2016部署实施案例篇-04.Ex基础配置篇(下)

上二篇我们对全新部署完成的Exchange Server做了基础的一些配置&#xff0c;今天继续基础配置这个话题。 DAG配置 先决条件 首先在配置DGA之前我们需要确保DAG成员服务器上磁盘的盘符都是一样的&#xff0c;大小建议最好也相同。 其次我们需要确保有一块网卡用于数据复制使用&…

数据库课程设计结论_结论:

数据库课程设计结论In this article, we will learn about different types[Z Test and t Test] of commonly used Hypothesis Testing.在本文中&#xff0c;我们将学习常用假设检验的不同类型[ Z检验和t检验 ]。 假设是什么&#xff1f; (What is Hypothesis?) This is a St…

配置Java_Home,临时环境变量信息

一、内容回顾 上一篇博客《Java运行环境的搭建---Windows系统》 我们说到了配置path环境变量的目的在于控制台可以在任意路径下都可以找到java的开发工具。 二、配置其他环境变量 1. 原因 为了获取更大的用户群体&#xff0c;所以使用java语言开发系统需要兼容不同版本的jdk&a…

网页缩放与窗口缩放_功能缩放—不同的Scikit-Learn缩放器的效果:深入研究

网页缩放与窗口缩放内部AI (Inside AI) In supervised machine learning, we calculate the value of the output variable by supplying input variable values to an algorithm. Machine learning algorithm relates the input and output variable with a mathematical func…

Python自动化开发01

一、 变量变量命名规则变量名只能是字母、数字或下划线的任意组合变量名的第一个字符不能是数字以下关键字不能声明为变量名 [and, as, assert, break, class, continue, def, del, elif, else, except, exec, finally, for, from, global, if, import, in, is, lambda, not,…

未越狱设备提取数据_从三星设备中提取健康数据

未越狱设备提取数据Health data is collected every time you have your phone in your pocket. Apple or Android, the phones are equipped with a pedometer that counts your steps. Hence, health data is recorded. This data could be your one free data mart for a si…

[BZOJ2599][IOI2011]Race 点分治

2599: [IOI2011]Race Time Limit: 70 Sec Memory Limit: 128 MBSubmit: 3934 Solved: 1163[Submit][Status][Discuss]Description 给一棵树,每条边有权.求一条简单路径,权值和等于K,且边的数量最小.N < 200000, K < 1000000 Input 第一行 两个整数 n, k第二..n行 每行三…

分词消除歧义_角色标题消除歧义

分词消除歧义折磨数据&#xff0c;它将承认任何事情 (Torture the data, and it will confess to anything) Disambiguation as defined in the vocabulary.com dictionary refers to the removal of ambiguity by making something clear and narrowing down its meaning. Whi…

北航教授李波:说AI会有低潮就是胡扯,这是人类长期的追求

这一轮所谓人工智能的高潮&#xff0c;和以往的几次都有所不同&#xff0c;那是因为其受到了产业界的极大关注和参与。而以前并不是这样。 当今世界是一个高度信息化的世界&#xff0c;甚至我们有一只脚已经踏入了智能化时代。而在我们日常交流和信息互动中&#xff0c;迅速发…

在加利福尼亚州投资于新餐馆:一种数据驱动的方法

“It is difficult to make predictions, especially about the future.”“很难做出预测&#xff0c;尤其是对未来的预测。” ~Niels Bohr〜尼尔斯波尔 Everything is better interpreted through data. And data-driven decision making is crucial for success in any ind…

阿里云ESC上的Ubuntu图形界面的安装

系统装的是Ubuntu Server 16.04 64位版的图形界面&#xff0c;这里是转载的一个大神的帖子 http://blog.csdn.net/dk_0228/article/details/54571867&#xff0c; 当然自己也再记录一下&#xff0c;加深点印象 1.更新apt-get 保证最新 apt-get update 2.用putty或者Xshell连接远…

近似算法的近似率_选择最佳近似最近算法的数据科学家指南

近似算法的近似率by Braden Riggs and George Williams (gwilliamsgsitechnology.com)Braden Riggs和George Williams(gwilliamsgsitechnology.com) Whether you are new to the field of data science or a seasoned veteran, you have likely come into contact with the te…

VMware安装CentOS之二——最小化安装CentOS

1、上文已经创建了一个虚拟机&#xff0c;现在我们点击开启虚拟机。2、虚拟机进入到安装的界面&#xff0c;在这里我们选择第一行&#xff0c;安装或者升级系统。3、这里会提示要检查光盘&#xff0c;我们直接选择跳过。4、这里会提示我的硬件设备不被支持&#xff0c;点击OK&a…

在Python中使用Seaborn和WordCloud可视化YouTube视频

I am an avid Youtube user and love watching videos on it in my free time. I decided to do some exploratory data analysis on the youtube videos streamed in the US. I found the dataset on the Kaggle on this link我是YouTube的狂热用户&#xff0c;喜欢在业余时间…