惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
有赞技术团队
有赞技术团队
博客园 - 三生石上(FineUI控件)
博客园_首页
博客园 - 【当耐特】
WordPress大学
WordPress大学
月光博客
月光博客
博客园 - 叶小钗
S
SegmentFault 最新的问题
雷峰网
雷峰网
H
Help Net Security
宝玉的分享
宝玉的分享
A
About on SuperTechFans
IT之家
IT之家
J
Java Code Geeks
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 聂微东
T
The Blog of Author Tim Ferriss
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Y
Y Combinator Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Python Strings: Indexing, Slicing, and Essential String M...
Tejas Shinkar · 2026-06-18 · via DEV Community

As I continue learning Python for Cloud, DevOps, and Automation, I spent some time understanding strings in detail. Strings look simple initially, but Python provides a lot of powerful operations that become useful when working with logs, configuration files, API responses, and automation scripts.


What is a String?

A string is a sequence of characters enclosed within single quotes, double quotes, or triple quotes.

Examples:

"Python"

'DevOps'

"""Multi-line text"""

Key Notes

  • Strings are ordered collections of characters.
  • Strings are immutable.
  • Every character has an index position.

String Indexing

Indexing allows access to individual characters.

text = "DevOps"

print(text[0])
print(text[3])
print(text[-1])

Index Positions

Character D e v O p s
Index 0 1 2 3 4 5
Negative Index -6 -5 -4 -3 -2 -1

Examples:

text[0]'D'

text[3]'O'

text[-1]'s'

Key Note

Positive indexing starts from left to right.

Negative indexing starts from right to left.


String Slicing

Slicing extracts a portion of a string.

Syntax

string[start:stop:step]

  • Start is included.
  • Stop is excluded.
  • Step is optional.

Examples:

"DevOps"[0:3]'Dev'

"DevOps"[1:4]'evO'

"DevOps"[:3]'Dev'

"DevOps"[3:]'Ops'


Using Step Value

Every nth character can be extracted using step.

Examples:

"DevOps"[::2]'Dvp'

"DevOps"[::3]'DO'


Reversing a String

One of the most useful slicing tricks:

"DevOps"[::-1]'spOveD'

Why It Matters

This technique is commonly used in interview questions and palindrome checks.


Palindrome Check

A palindrome reads the same forward and backward.

word = "madam"

if word == word[::-1]:
    print("Palindrome")

Examples:

madam

racecar

level


String Concatenation

Concatenation joins strings together.

Examples:

"Hello" + "World"'HelloWorld'

"AWS" + " DevOps"'AWS DevOps'


String Repetition

The * operator repeats a string multiple times.

Examples:

"Python" * 3

Result:

PythonPythonPython


Finding String Length

The len() function returns the total number of characters.

Examples:

len("Python")6

len("DevOps Engineer")15


Useful String Methods


capitalize()

Converts the first character to uppercase.

Examples:

"python".capitalize()'Python'


title()

Capitalizes the first character of every word.

Examples:

"this is python".title()

Result:

'This Is Python'


lower()

Converts all characters to lowercase.

Examples:

"PyThOn".lower()

Result:

'python'


upper()

Converts all characters to uppercase.

Examples:

"PyThOn".upper()

Result:

'PYTHON'


swapcase()

Reverses character casing.

Examples:

"This IS Python".swapcase()

Result:

'tHIS is pYTHON'


count()

Returns the number of occurrences of a substring.

Examples:

"Python".count("o")1

"DevOps DevOps".count("DevOps")2

Useful Feature

Count can search within a specific range.

Example:

text.count("e", 10, 35)


find()

Returns the index of the first occurrence.

Examples:

"Python".find("t")2

"Python".find("z")-1

Key Note

Returns -1 if the value is not found.


index()

Works similarly to find().

Examples:

"Python".index("t")2

Difference

find() returns -1 when not found.

index() raises a ValueError.


strip()

Removes unwanted characters from both ends.

Examples:

" Python ".strip()'Python'

"$%Python$%".strip("$%")'Python'

Important

strip() removes matching characters, not exact patterns.


lstrip()

Removes characters only from the left side.

Example:

" Python".lstrip()


rstrip()

Removes characters only from the right side.

Example:

"Python ".rstrip()


split()

Converts a string into a list.

Examples:

"This is Python".split()

Result:

['This', 'is', 'Python']

Custom separator:

"a,b,c,d".split(",")

Result:

['a', 'b', 'c', 'd']


join()

Converts a list back into a string.

Examples:

" ".join(["This", "is", "Python"])

Result:

'This is Python'

Custom separator:

" | ".join(["AWS", "Docker", "Kubernetes"])

Result:

AWS | Docker | Kubernetes


Quick Revision

Operation Example
Length len(text)
Indexing text[0]
Negative Indexing text[-1]
Slicing text[1:5]
Reverse String text[::-1]
Count text.count("a")
Find text.find("a")
Index text.index("a")
Split text.split()
Join " ".join(list)
Strip text.strip()
Uppercase text.upper()
Lowercase text.lower()

Final Thoughts

Most beginner examples use simple words, but these operations become extremely useful when working with log files, configuration values, API responses, and text processing tasks. Understanding indexing, slicing, and common string methods makes Python code cleaner and significantly easier to write.

Small concepts like these eventually become the building blocks for larger automation and infrastructure scripts.