Python – Keywords (more diff.)

 0    23 карточки    sir
скачать mp3 Печать играть Проверьте себя
 
Вопрос Ответ
To create an alias
начать обучение
as
For debugging
начать обучение
assert
To break out of a loop
начать обучение
break
To define a class
начать обучение
class
To continue to the next iteration of a loop
начать обучение
continue
To define a function
начать обучение
def
To delete an object
начать обучение
del
Used with exceptions, what to do when an exception occurs
начать обучение
except
Used with exceptions, a block of code that will be executed no matter if there is an exception or not
начать обучение
finally
To import specific parts of a module
начать обучение
from
To declare a global variable
начать обучение
global
To import a module
начать обучение
import
To check if a value is present in a list, tuple, etc.
начать обучение
in
To test if two variables refer to the same memory space.
начать обучение
is
To create an anonymous function
начать обучение
lambda
To declare a non-local variable
начать обучение
nonlocal
A null statement, a statement that will do nothing
начать обучение
pass
To raise an exception
начать обучение
raise
To exit a function and return a value
начать обучение
return
To make a try... except statement
начать обучение
try
To create a while loop
начать обучение
while
Used to simplify file handling
начать обучение
with
To end a function, returns a generator
начать обучение
yield

Вы должны войти в свой аккаунт чтобы написать комментарий.