On closer reading, the OP may be asking how to make a function doing what they want, albeit without a plus.
Here is a python function as a one-liner that takes exactly two arguments of any kind (including string and integer) and concatenates them into one string without anything between and prints them: def strprint(first, second): print(str(first) + str(second)) >>> strprint(5,1) 51 >>> strprint("a5",1) a51 >>> strprint(12,"o'clock") 12o'clock >>> strprint(3.1415926535,complex(3,4)) 3.1415926535(3+4j) Want something similar for any number of arguments? Here is a slightly longer one-liner: def strprintall(*many): print(''.join([str(each) for each in many])) >>> strprintall(1,"=egy\n",2,"=kettő\n",3,"=három\n",4,"=négy\n",5,"=öt\n","in my childhood language.\n") 1=egy 2=kettő 3=három 4=négy 5=öt in my childhood language. Note my meager attempt is not using a plus sign as I addressed a sort of way that could be done using a __radd__ method or other ways like an f-string. I can not repeat this often enough. The easiest way to do something you want in a new language is to work within the existing language as-is and not to ask the language to change to be the way you want. That can take years or never happen, and especially if the designers did not want the feature you ask for. -----Original Message----- From: Python-list <python-list-bounces+avi.e.gross=gmail....@python.org> On Behalf Of 2qdxy4rzwzuui...@potatochowder.com Sent: Wednesday, April 12, 2023 3:17 PM To: python-list@python.org Subject: Re: Weak Type Ability for Python On 2023-04-12 at 14:51:44 -0400, Thomas Passin <li...@tompassin.net> wrote: > On 4/12/2023 1:11 PM, Chris Angelico wrote: > > On Thu, 13 Apr 2023 at 03:05, Ali Mohseni Roodbari > > <ali.mohseniroodb...@gmail.com> wrote: > > > > > > Hi all, > > > Please make this command for Python (if possible): > > > > > > > > > x=1 > > > > > > y='a' > > > > > > wprint (x+y) > > > > > > 1a > > > > > > In fact make a new type of print command which can print and show strings > > > and integers together. > > > > > > > Try: > > > > print(x, y) > > > > ChrisA > > It puts a space between "1" and "a", whereas the question does not want the > space. print(f'{x}{y}') would do it, but only works for variables named "x" > and "y". Or possibly print(x, y, sep=''). > As happens so often, the OP has not specified what he actually wants to do > so we can only answer the very specific question. Agreed. -- https://mail.python.org/mailman/listinfo/python-list -- https://mail.python.org/mailman/listinfo/python-list