Python – Keywords (more diff.)

 0    23 schede    sir
Scarica mp3 Stampa Gioca Testa il tuo livello
 
Domanda Risposta
To create an alias
inizia ad imparare
as
For debugging
inizia ad imparare
assert
To break out of a loop
inizia ad imparare
break
To define a class
inizia ad imparare
class
To continue to the next iteration of a loop
inizia ad imparare
continue
To define a function
inizia ad imparare
def
To delete an object
inizia ad imparare
del
Used with exceptions, what to do when an exception occurs
inizia ad imparare
except
Used with exceptions, a block of code that will be executed no matter if there is an exception or not
inizia ad imparare
finally
To import specific parts of a module
inizia ad imparare
from
To declare a global variable
inizia ad imparare
global
To import a module
inizia ad imparare
import
To check if a value is present in a list, tuple, etc.
inizia ad imparare
in
To test if two variables refer to the same memory space.
inizia ad imparare
is
To create an anonymous function
inizia ad imparare
lambda
To declare a non-local variable
inizia ad imparare
nonlocal
A null statement, a statement that will do nothing
inizia ad imparare
pass
To raise an exception
inizia ad imparare
raise
To exit a function and return a value
inizia ad imparare
return
To make a try... except statement
inizia ad imparare
try
To create a while loop
inizia ad imparare
while
Used to simplify file handling
inizia ad imparare
with
To end a function, returns a generator
inizia ad imparare
yield

Devi essere accedere per pubblicare un commento.