-
What is all in python? It is a list of public objects of that module, as interpreted by
import *
. It overrides the default of hiding everything that begins with an underscore. In other words, it is a list of strings defining what symbols in a module will be exported whenfrom <module> import *
is used on the module. NOTE:__all__
only affects thefrom <module> import *
behavior only. Members that are not mentioned in__all__
are still accessible from outside the module and can be imported withfrom <module> import <member>
. -
What is underscore? Following are different places where
_
is used in Python.
Those are my personal notes on AWS Solution Architect certification preparation. Hope you find them usefull.
To pass AWS certification, you should have:
- Sound knowledge about most of the AWS services ( EC2, VPC, RDS, Cloudfront, S3, Route53 etc,)
- Hands on experience with AWS services.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <iostream> | |
#include <string> | |
#include <vector> | |
#include <queue> | |
#include <stack> | |
#include <algorithm> | |
using namespace std; | |
class Node{ |