Python – Keywords (more diff.)

 0    23 cartonașe    sir
descarcă mp3 printează joacă Testează-te
 
Întrebare Răspuns
To create an alias
începe să înveți
as
For debugging
începe să înveți
assert
To break out of a loop
începe să înveți
break
To define a class
începe să înveți
class
To continue to the next iteration of a loop
începe să înveți
continue
To define a function
începe să înveți
def
To delete an object
începe să înveți
del
Used with exceptions, what to do when an exception occurs
începe să înveți
except
Used with exceptions, a block of code that will be executed no matter if there is an exception or not
începe să înveți
finally
To import specific parts of a module
începe să înveți
from
To declare a global variable
începe să înveți
global
To import a module
începe să înveți
import
To check if a value is present in a list, tuple, etc.
începe să înveți
in
To test if two variables refer to the same memory space.
începe să înveți
is
To create an anonymous function
începe să înveți
lambda
To declare a non-local variable
începe să înveți
nonlocal
A null statement, a statement that will do nothing
începe să înveți
pass
To raise an exception
începe să înveți
raise
To exit a function and return a value
începe să înveți
return
To make a try... except statement
începe să înveți
try
To create a while loop
începe să înveți
while
Used to simplify file handling
începe să înveți
with
To end a function, returns a generator
începe să înveți
yield

Trebuie să te autentifici pentru a posta un comentariu.