Problem Formulation
print([1, 2, 3]) # Output: [1, 2, 3] # Desired: [1 2 3]
Note that this is slightly different to those two problem variants—feel free to click there to learn more about those problem variants:
๐ Recommended Tutorial: How to Print a List Without Brackets and Commas in Python?
Method 1: Unpacking Multiple Values into Print Function
lst = [1, 2, 3] print('[', *lst, ']') # [ 1 2 3 ]
Method 2: String Replace Method
my_list = [1, 2, 3] # Convert List to String s = str(my_list) print(s) # [1, 2, 3] # Replace Separating Commas s = s.replace(',', '') # Print List Without Commas print(s) # [1 2 3]
Method 3: String Join With Generator Expression
my_list = [1, 2, 3] print('[', ' '.join(str(x) for x in my_list), ']') # Output: [ 1 2 3 ]
๐ก Note: Combining the join()
method with a generator expression and string concatenation is the recommended approach of choice if you want to convert a list to a string without commas instead of printing it.
Here’s an example:
my_list = [1, 2, 3] s = '[' + ' '.join(str(x) for x in my_list) + ']' print(s) # Output: [ 1 2 3 ]
Method 4: Print NumPy Array
Sometimes it is sufficient to use the NumPy default output that is without separating commas. For example, if you print a list it yields [1, 2, 3]
. And if you print an array it yields [1 2 3]
. You can easily convert a list to a NumPy array using the np.array(lst)
constructor.
import numpy as np my_list = [1, 2, 3] print(np.array(my_list)) # Output: [1 2 3]
๐ Recommended Tutorial: How to Install NumPy?
Where to Go From Here?
Enough theory. Letโs get some practice!
Coders get paid six figures and more because they can solve problems more effectively using machine intelligence and automation.
To become more successful in coding, solve more real problems for real people. Thatโs how you polish the skills you really need in practice. After all, whatโs the use of learning theory that nobody ever needs?
You build high-value coding skills by working on practical coding projects!
Do you want to stop learning with toy projects and focus on practical code projects that earn you money and solve real problems for people?
๐ If your answer is YES!, consider becoming a Python freelance developer! Itโs the best way of approaching the task of improving your Python skillsโeven if you are a complete beginner.
If you just want to learn about the freelancing opportunity, feel free to watch my free webinar โHow to Build Your High-Income Skill Pythonโ and learn how I grew my coding business online and how you can, tooโfrom the comfort of your own home.
Programmer Humor
โ Question: How did the programmer die in the shower? โ ๏ธ
โ Answer: They read the shampoo bottle instructions:
Lather. Rinse. Repeat.