'Can we remove the given space b/w printed stars and they get close to each other [duplicate]

print("*")
print("*")
print("*")
print("*")

How to remove this space is it possible...
* * * *



Solution 1:[1]

print("*","*","*","*",sep="")

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Damini Suthar