Python – Keywords (more diff.)

 0    23 fiszki    sir
ściągnij mp3 drukuj graj sprawdź się
 
Pytanie Odpowiedź
To create an alias
rozpocznij naukę
as
For debugging
rozpocznij naukę
assert
To break out of a loop
rozpocznij naukę
break
To define a class
rozpocznij naukę
class
To continue to the next iteration of a loop
rozpocznij naukę
continue
To define a function
rozpocznij naukę
def
To delete an object
rozpocznij naukę
del
Used with exceptions, what to do when an exception occurs
rozpocznij naukę
except
Used with exceptions, a block of code that will be executed no matter if there is an exception or not
rozpocznij naukę
finally
To import specific parts of a module
rozpocznij naukę
from
To declare a global variable
rozpocznij naukę
global
To import a module
rozpocznij naukę
import
To check if a value is present in a list, tuple, etc.
rozpocznij naukę
in
To test if two variables refer to the same memory space.
rozpocznij naukę
is
To create an anonymous function
rozpocznij naukę
lambda
To declare a non-local variable
rozpocznij naukę
nonlocal
A null statement, a statement that will do nothing
rozpocznij naukę
pass
To raise an exception
rozpocznij naukę
raise
To exit a function and return a value
rozpocznij naukę
return
To make a try... except statement
rozpocznij naukę
try
To create a while loop
rozpocznij naukę
while
Used to simplify file handling
rozpocznij naukę
with
To end a function, returns a generator
rozpocznij naukę
yield

Musisz się zalogować, by móc napisać komentarz.