Programming > Python's keywords > Flashcards
What’s and in Python?
and is a logical operator used to combine conditional statements. It returns True if both statements are true.
What’s as in Python?
as is used to create an alias while importing a module. Example: import math as m.