controlling the char size.
i need a help on controlling the size of a char. i want all of my printed chars in a string be in a particular size. for example in the spaces size are not equal in phone and computer or in computer the size of a slash"/" is not equal with the size of a "|" or a dot".". I need it for this code: #start size=int(input('''in the size: ''')) mid=round((size+0.1)/2)-1 format=[''' ''' for x in range(size)] def up(): for i in range(mid): format[i]=('''|'''+''' '''*mid+'''#'''+''' '''*mid)*size+'''|''' def center(): format[mid]=('''|'''+'''#'''*size)*size+'''|''' def below(): for i in range(mid+1,size): format[i]=('''|'''+''' '''*mid+'''#'''+''' '''*mid)*size+'''|''' up() center() below() for i in range(size): print('''|'''+'''-'''*(len(format[0])-2)+'''|''') print('''\n'''.join(format)) print('''|'''+'''-'''*(len(format[0])-2)+'''|''') #end all lines should end in one place, but it don't. ill appreciate if you help me on this problem.