python|May 14, 2019|1 min read

Python 3 - Fun with Python String

TL;DR

Use Python string methods like startswith(), 'in' operator for substring checks, and string slicing for efficient string manipulation and comparison.

Python 3 - Fun with Python String

This post some useful tips of using strings, and some issues while dealing with strings

Hope, you have seen Python string format

Check if a string starts with some sequence of characters

to_search = 'my_name'
my_var = 'my_name_is_gorav'
if my_var.startswith(to_search):
    print('Found')

Get substring delimited by some character or string

Example, you have a string:

my_var = 'Name:GyanBlog'

You want to have anything after colon

name = my_var.split(':')[1]

Get first letter capital of string

Example: You have some long string like:

name = 'SERVICE_CLOUD_ACCOUNTS'

And, I want something like:

ServiceCloudAccounts

Then, use this code:

new_name = name.title().replace('_', '')

title() method will give you Service_Cloud_Accounts, then we have to remove any other characters we want

Remove any whitespaces around a string, i.e trim

my_str.strip()

Remove multiple spaces with single space

Your string has multiple spaces in between, and you want to convert them into one only.

import re
s = 'hey,    i have  multiple    spaces'
re.sub("\s+", " ", s);

# Output
'hey, i have multiple spaces'

How to add Curly-braces to string in string format

It works perfectly find with following cases

print('{hi}')

print('{hi} %s' %('hi'))

But, not with

website='GyanBlog.com'
print(f'hi { {website} .com}')

You have to use Double Curly-braces

website='GyanBlog.com'
{% raw %}
print(f'hi {{ {website} .com}}')
{% endraw %}

Get whole string except first letter, or get anything after first character

s = 'GyanBlog'
s[1:]
#Output: yanBlog

Get whole string except last letter

s = 'GyanBlog'
s[:-1]

Related Posts

How to Solve Circular Import Error in Python

How to Solve Circular Import Error in Python

Introduction To give some context, I have two python files. (Both in same folder…

Python 3 - Magical Methods and Tricks with extremely useful methods

Python 3 - Magical Methods and Tricks with extremely useful methods

This post will show some really awesome tricks in python. Get the power of a…

Python 3 - Format String fun

Python 3 - Format String fun

This post is dedicated for cases where we intend to append a variable value in a…

Understanding and Solving pylint errors for Python 3

Understanding and Solving pylint errors for Python 3

Pylint is an excellent tool to have good quality code. This post is not about…

Python SMTP Email Code - How to Send HTML Email from Python Code with Authentication at SMTP Server

Python SMTP Email Code - How to Send HTML Email from Python Code with Authentication at SMTP Server

Introduction This post has the complete code to send email through smtp server…

Python - How to Maintain Quality Build Process Using Pylint and Unittest Coverage With Minimum Threshold Values

Python - How to Maintain Quality Build Process Using Pylint and Unittest Coverage With Minimum Threshold Values

Introduction It is very important to introduce few process so that your code and…

Latest Posts

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Claude Code Skills — Build a Better Engineering Workflow with AI-Powered Code Reviews, Security Scans, and More

Most developers use Claude Code like a search engine — ask a question, get an…

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Building an AI Voicebot for Visitor Check-In — A Practical Guide to Handling the Messy Parts

Every office lobby has the same problem: a visitor walks in, nobody’s at the…

Server Security Best Practices — Complete Hardening Guide for Production Systems

Server Security Best Practices — Complete Hardening Guide for Production Systems

Every breach post-mortem tells the same story: an unpatched service, a…

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

Staff Engineer Study Plan for MAANG Interviews — The Complete 12-Week Roadmap

If you’re a Senior Engineer (L5) preparing for Staff (L6+) roles at MAANG…

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF Explained — The Complete Guide with Real Attack Examples and Defenses

XSS and CSRF have been in the OWASP Top 10 for over a decade. They’re among the…

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

OWASP Top 10 (2021) — Every Vulnerability Explained with Code

The OWASP Top 10 is the industry standard for web application security risks. If…