Category Python

Fixing the “SSL: SSLV3_ALERT_HANDSHAKE_FAILURE” error in Python

The “SSL: SSLV3_ALERT_HANDSHAKE_FAILURE” error indicates that the server and client in your Python application couldn’t establish a secure connection using SSLv3. I encountered the “SSL: SSLV3_ALERT_HANDSHAKE_FAILURE” error while working on a project with a tight deadline. This error message meant…

2 Ways to convert string to list in Python

The split method is used to split a string based on a specified delimiter. Once split, it returns the split string in a list, using this method we can convert string to list in Python. Using Split() to convert string…

3 Ways to Append to list in Python

List in Python are indexed and have a definite count while initializing. The elements in a list are indexed according to a definite sequence and the indexing of a list is done with 0 being the first index and the…

Python 3 String Operations

lower(): Converts a string to the lowercase letter. upper(): Converts a string to the uppercase letter. islower() / isupper(): Checks if the whole string is in lower case or upper case and returns bool value respectively. startswith(): Returns a bool…