Python's keywords Flashcards
Revising keywords of python
1
Q
What’s and in Python?
A
and is a logical operator used to combine conditional statements. It returns True if both statements are true.
2
Q
What’s as in Python?
A
as is used to create an alias while importing a module. Example: import math as m.
3
Q
A