Some links on this page are affiliate links: if you buy through them we may earn a commission, at no extra cost to you.
Use a slice to keep the first 10 characters of a Python string: text[:10]. It returns at most 10 characters and safely returns the whole string if it is shorter than 10.
Keep the first 10 characters
text = "Python makes string handling easy"
trimmed = text[:10]
print(trimmed)
# Python mak
In text[:10], the start is omitted, so the slice begins at the start of the string. The stop position, 10, is excluded: the slice includes positions 0 through 9. A stop position beyond the string’s length is allowed, so a short input needs no special case.
text = "Python"
print(text[:10])
# Python
This is a maximum, not a fixed length. A six-character input remains six characters; Python does not pad it. To check the result, use len(trimmed) or assert len(trimmed) <= 10. Python’s slice and string behavior is documented in the Python tutorial and standard types reference.
Recommended Free Tools
Slicing returns a new string; it does not change the original, because Python strings are immutable. Assign the result if you want to use the shorter value:
#1 Best Overall
- Brilliant Color Illumination- With 11 unique backlights, choose the perfect ambiance for any mood. Adjust light speed and brightness among 5 levels for a comfortable environment, day or night. The double injection ABS keycaps ensure clear backlight and precise typing. From late-night tasks to immersive gaming, our mechanical keyboard enhances every experience
- Support Macro Editing: The K671 Mechanical Gaming Keyboard can be macro editing, you can remap the keys function, set shortcuts, or combine multiple key functions in one key to get more efficient work and gaming. The LED Backlit Effects also can be adjusted by the software(note: the color can not be changed)
- Hot-swappable Linear Red Switch- Our K671 gaming keyboard features red switch, which requires less force to press down and the keys feel smoother and easier to use. It's best for rpgs and mmo, imo games. You will get 4 spare switches and two red keycaps to exchange the key switch when it does not work.
- Full keys Anti-ghosting- All keys can work simultaneously, easily complete any combining functions without conflicting keys. 12 multimedia key shortcuts allow you to quickly access to calculator/media/volume control/email
- Professional After-Sales Service- We provide every Redragon customer with 24-Month Warranty , Please feel free to contact us when you meet any problem. We will spare no effort to provide the best service to every customer
text = text[:10]
Truncation is not whitespace stripping
“Trim” can mean either shortening a string or removing whitespace around it. Use slicing to truncate; use strip() to remove whitespace from both ends:
text = " Python programming "
text.strip()
# 'Python programming'
text.strip()[:10]
# 'Python pro'
Order matters. text.strip()[:10] removes leading and trailing whitespace first, then keeps the first 10 characters. text[:10].strip() takes the first 10 characters first, then strips whitespace from that fragment. They can produce different results.
For only leading whitespace, use lstrip(); for only trailing whitespace, use rstrip(). Neither method limits the string’s length by itself.
Free tools Windows power users keep installed
One-click scans. No signup required.
Rank #2
- Tri-mode Connection Keyboard: AULA F75 Pro wireless mechanical keyboards work with Bluetooth 5.0, 2.4GHz wireless and USB wired connection, can connect up to five devices at the same time, and easily switch by shortcut keys or side button. F75 Pro computer keyboard is suitable for PC, laptops, tablets, mobile phones, PS, XBOX etc, to meet all the needs of users. In addition, the rechargeable keyboard is equipped with a 4000mAh large-capacity battery, which has long-lasting battery life
- Hot-swap Custom Keyboard: This custom mechanical keyboard with hot-swappable base supports 3-pin or 5-pin switches replacement. Even keyboard beginners can easily DIY there own keyboards without soldering issue. F75 Pro gaming keyboards equipped with pre-lubricated stabilizers and LEOBOG reaper switches, bring smooth typing feeling and pleasant creamy mechanical sound, provide fast response for exciting game
- Advanced Structure and PCB Single Key Slotting: This thocky heavy mechanical keyboard features a advanced structure, extended integrated silicone pad, and PCB single key slotting, better optimizes resilience and stability, making the hand feel softer and more elastic. Five layers of filling silencer fills the gap between the PCB, the positioning plate and the shaft,effectively counteracting the cavity noise sound of the shaft hitting the positioning plate, and providing a solid feel
- 16.8 Million RGB Backlit: F75 Pro light up led keyboard features 16.8 million RGB lighting color. With 16 pre-set lighting effects to add a great atmosphere to the game. And supports 10 cool music rhythm lighting effects with driver. Lighting brightness and speed can be adjusted by the knob or the FN + key combination. You can select the single color effect as wish. And you can turn off the backlight if you do not need it
- Professional Gaming Keyboard: No matter the outlook, the construction, or the function, F75 Pro mechanical keyboard is definitely a professional gaming keyboard. This 81-key 75% layout compact keyboard can save more desktop space while retaining the necessary arrow keys for gaming. Additionally, with the multi-function knob, you can easily control the backlight and Media. Keys macro programmable, you can customize the function of single key or key combination function through F75 driver to increase the probability of winning the game and improve the work efficiency. N key rollover, and supports WIN key lock to prevent accidental touches in intense games
Add an ellipsis without exceeding 10 characters
Appending an ellipsis after taking 10 characters makes a result up to 13 characters long:
text[:10] + "..."
If the total result must be no longer than 10 characters, reserve three positions for the ellipsis. Keep shorter strings unchanged:
def trim_with_ellipsis(text: str, limit: int = 10) -> str:
if limit < 0:
raise ValueError("limit must be non-negative")
if len(text) <= limit:
return text
if limit <= 3:
return "." * limit
return text[:limit - 3] + "..."
print(trim_with_ellipsis("Python makes string handling easy"))
# Python ...
The output is at most 10 characters. When the input is already 10 characters or shorter, it is returned unchanged, so it may be shorter than 10. For a fixed limit of 10, the core expression for a longer input is text[:7] + "...".
Rank #3
- The Keychron C2 (non-backlight version) is a 104 keys full size wired retro color keycaps mechanical keyboard made for Mac and Windows. Engineered to maximize your productivity with most popular full size layout with number pad.
- With a layout optimized for Mac, the C2 has all necessary multimedia and function keys (Num Lock works with Windows only), while compatible with Windows, and comes with a dedicated Siri or Cortana key. Extra keycaps for both Mac and Windows operating systems are included.
- Designed with reliability in mind, the C2 comes with USB Type-C wired connection with a braid cable, which ensures a constant power supply, and best to fit home and light gaming. Inclined bottom frame and 2 level adjustable feet (6˚ & 9˚) makes the C2 more comfortable to type.
- The pre-installed tactile Keychron switch providing unrivaled tactile responsiveness with up to 50 million keystroke durable lifespan.
- Outfitted the C2 Non-Backlight version with retro-inspired color scheme looks as good in the office as it does in the game room.
Keep the last 10 characters instead
Use a negative start index to take the tail of a string:
text = "ABCDEFGHIJKLM"
print(text[-10:])
# DEFGHIJKLM
As with a positive slice, a short string is returned whole. This is useful when the ending—such as an identifier suffix or filename extension—is what matters.
Use a variable limit
Replace the literal 10 with a variable when the limit depends on the context:
Rank #4
- 【Dreamy Rainbow Gaming Keyboard】K521 Gaming Keyboard Adopts a Different LED Backlight Design, Upgraded on the Traditional LED Backlight Effect, Making the Light More Penetrating, Giving You a More Dazzling Visual Effect, Making Your Gaming Process More Enjoyable
- 【One Touch Opens & Visual Feast】The K521 Red Dragon Keyboard has a One-Touch on/off Lighting Button for Added Convenience. It also has a Three-Position Adjustable Breathing Mode and a Four-Position Adjustable Brightness Lighting Mode
- 【Mechanical Feeling & Fast Tapping】The PC Keyboard Keys are Designed for Mechanical Feeling, Giving You a Better Feel During Use and the Ability to Trigger Keys Quickly, Allowing You to Win All Your Games
- 【19 Keys Anti-Ghosting Keyboard】Anti-Ghosting Ensures Every Button Can Be Triggered. This Allows You to Trigger Key Combinations In The Game Accurately, And Each Skill Can Be Accurately Released to Increase Your Winning Rate. Redragon K521 Will Be Your Perfect Partner
- 【12 Multimedia Combination Keys】The K521 Wired Gaming Keyboard is Equipped with 12 Multimedia Keys That Can Greatly Enhance Your Gaming/Office Efficiency and Make It More Convenient to Use
limit = 10
trimmed = text[:limit]
A small helper makes the rule reusable. If a negative limit should be treated as invalid rather than as Python’s valid negative-slice syntax, check it explicitly:
def truncate(text: str, limit: int) -> str:
if limit < 0:
raise ValueError("limit must be non-negative")
return text[:limit]
Format a field to width 10
For ordinary truncation, text[:10] is the clearest choice. If you are formatting aligned output, string precision and field width can be combined:
The Tool Desk
Outbyte Driver Updater FREEFix the driver behind crashes, sound loss and screen glitchesFind Drivers →Outbyte PC Repair FREEClear out junk files and repair common Windows errorsFree Scan →text = "Python"
print(repr(f"{text:<10.10}"))
# 'Python '
Here, <10 sets a minimum field width of 10 and left-aligns the value; .10 caps the string precision at 10. A shorter value is padded with spaces, while a longer one is capped. To cap length without padding, f"{text:.10}" applies the precision alone. See the Python format specification. Width and padding are formatting concerns, not a replacement for the basic slice in ordinary string processing.
What counts as a character?
For a Python str, slicing and len() operate on Unicode code points, not encoded bytes or necessarily the visible symbols a person perceives as characters. Most plain text behaves as expected, but an emoji sequence, flag, or letter combined with a separate accent can contain multiple code points. A slice can split such a sequence—for example, taking only the first code point of "eu0301clair" can leave the base letter without its combining accent.
Best Value
- Tactile Quiet mechanical key switches with a satisfying tactile bump you feel - for precise feedback, reactive key reset, and less noise so your typing doesn't disturb those around you
- Low-profile keys, more comfort: A keyboard layout designed for effortless precision, with a full-size form factor and low-profile mechanical switches for better ergonomics
- Smart illumination: Backlit keys light up the moment your hands approach the cordless keyboard and automatically adjust to suit changing lighting conditions
- Faster workflow, more customization: Customize Fn keys, assign backlighting effects, enable Flow cross-computer, multi-device control, and more in the improved Logi Options+ (1)
- Multi-device, multi-OS: Pair MX Mechanical Bluetooth wireless keyboard with up to 3 devices on nearly any operating system via Bluetooth Low Energy or included Logi Bolt receiver(2)
If a limit means 10 user-perceived characters, use a grapheme-aware approach rather than assuming that 10 code points are 10 complete visible symbols. If it means 10 bytes, such as a UTF-8 storage limit, ordinary string slicing is not enough. Encode first and truncate the bytes carefully so the result does not end in the middle of a UTF-8 sequence:
def truncate_utf8_to_bytes(text: str, limit: int = 10) -> str:
if limit < 0:
raise ValueError("limit must be non-negative")
encoded = text.encode("utf-8")
if len(encoded) <= limit:
return text
end = limit
while end > 0:
try:
return encoded[:end].decode("utf-8")
except UnicodeDecodeError:
end -= 1
return ""
This keeps the encoded result within the byte limit and avoids returning a partial code point. It does not guarantee a whole grapheme cluster: a combining mark or multi-code-point emoji sequence could still be cut at a valid code-point boundary. Python’s Unicode HOWTO explains the distinction between Unicode strings and encoded byte sequences. For APIs, files, databases, or display fields, check what the receiving system actually limits: code points, grapheme clusters, bytes, or visual columns.
Quick Recap
Common mistakes and quick reference
text[10]gets the single character at index 10 (the eleventh character), not the first 10. It raisesIndexErrorif that position does not exist. Usetext[:10]for a safe prefix slice.text[:10] + "..."can exceed a 10-character total. Reserve room for the suffix first.text.strip()removes surrounding whitespace; it does not truncate the string or remove internal whitespace.text.ljust(10)pads short strings but does not truncate a longer one on its own. See the Python tutorial’s string-formatting section.- Slicing an integer is not string truncation. Convert only if its string representation is the value you intend to use:
str(value)[:10]. Decide explicitly how to handleNoneor other non-string inputs.
| Need | Expression |
|---|---|
| First 10 characters | text[:10] |
| Last 10 characters | text[-10:] |
| Strip both ends, then take the first 10 | text.strip()[:10] |
At most 10 including ... |
text[:7] + "..." when the input exceeds 10 |
| Variable maximum | text[:limit] |
| Minimum width 10, capped at 10 | f"{text:<10.10}" |
| 10 UTF-8 bytes | Encode, truncate on a valid UTF-8 boundary, then decode |
Product prices and availability are accurate as of the date/time indicated and are subject to change. Any price and availability information displayed on Amazon at the time of purchase will apply.

