Answer:
There could be an issue with your SIM card, or the problem could be on your carrier's end. Possible causes of the 'not registered on network' error include:
Your phone's firmware or operating system is out of date.
The SIM card is disconnected or damaged.
Your carrier is not selected in your phone's settings.
Your carrier is experiencing an outage.
Explanation:
Answer:
decode( )
Explanation:
We can use the method decode( ) to decode the string using the codec registered for encoding.
There are two parameters
encoding: We can encode with this parameter.
errors: If used to manage the errors.
For example:
String = "this is string example....wow!!!";
String = Str.encode('base64','strict');
If we print these variables we have:
String = b'dGhpcyBpcyBzdHJpbmcgZXhhbXBsZS4uLi53b3chISE='
String = this is string example....wow!!!
A good website to learn coding is called Lynda.com. It costs money but its well worth it!