Python – Keywords (more diff.)

 0    23 fiche    sir
baixar mp3 Imprimir jogar verifique-se
 
questão resposta
To create an alias
começar a aprender
as
For debugging
começar a aprender
assert
To break out of a loop
começar a aprender
break
To define a class
começar a aprender
class
To continue to the next iteration of a loop
começar a aprender
continue
To define a function
começar a aprender
def
To delete an object
começar a aprender
del
Used with exceptions, what to do when an exception occurs
começar a aprender
except
Used with exceptions, a block of code that will be executed no matter if there is an exception or not
começar a aprender
finally
To import specific parts of a module
começar a aprender
from
To declare a global variable
começar a aprender
global
To import a module
começar a aprender
import
To check if a value is present in a list, tuple, etc.
começar a aprender
in
To test if two variables refer to the same memory space.
começar a aprender
is
To create an anonymous function
começar a aprender
lambda
To declare a non-local variable
começar a aprender
nonlocal
A null statement, a statement that will do nothing
começar a aprender
pass
To raise an exception
começar a aprender
raise
To exit a function and return a value
começar a aprender
return
To make a try... except statement
começar a aprender
try
To create a while loop
começar a aprender
while
Used to simplify file handling
começar a aprender
with
To end a function, returns a generator
começar a aprender
yield

Você deve entrar para postar um comentário.