So I mainly code in Python however have coded using C# due to my major one thing in C# is being able to write on the same line using "Write" for example
int Num_Asteriks = 20.
for (int x = 0; x < NUM_ASTERIKS; ++x)
Write("*");//Creates the top boarder for the company motto
that was in C#. Im wondering if there is a way to do this in python ive tried the code listed below with no luck. It just prints on multiple lines
x = 0
asteriks = 15
while x != asteriks:
print('*',)