You are introducing new keywords (of & to) which can break a lot of code.
Beside that, i dont think any practical use of that statement so -1 from me.

On Mon, Oct 21, 2019, 6:01 PM <gedizgu...@gmail.com> wrote:

> m and n are lists or dicts or enumerates or classes or anything it can be
> assigned like following:
>
> instead of :
>
> m.a=n.a;
> m.b=n.b;
> m.c=n.c;
> ...
>
> I suggest:
>
> a,b,c of m to n ;
>
> I thought of this while writing something in javascript since I love
> pyhton above everything I can type (even more than native language
> sentences) I wanted to post this idea to here
> It is my first idea while coding ...
>
> In javascript, I was assinging a boundingBoxRect values to a div it was
> going like this:
>
> adiv=document.createElement("div")
> adiv.style.x=comp.x;
> adiv.style.y=comp.y;
> adiv.style.height=comp.height;
> adiv.style.widht=comp.width;
>
> I thought it is super waste of time instead of :
> x,y,height,width of comp to adiv;
>
> English is not my native language and as I said its my first idea while
> coding.
> Thank you.
> _______________________________________________
> Python-ideas mailing list -- python-ideas@python.org
> To unsubscribe send an email to python-ideas-le...@python.org
> https://mail.python.org/mailman3/lists/python-ideas.python.org/
> Message archived at
> https://mail.python.org/archives/list/python-ideas@python.org/message/UFCHNU3UINAVUJAPREDTKYIEYBLFNKOK/
> Code of Conduct: http://python.org/psf/codeofconduct/
>
_______________________________________________
Python-ideas mailing list -- python-ideas@python.org
To unsubscribe send an email to python-ideas-le...@python.org
https://mail.python.org/mailman3/lists/python-ideas.python.org/
Message archived at 
https://mail.python.org/archives/list/python-ideas@python.org/message/SIFAA7564N4I4GYVBRTPQKZIAPFZK5UF/
Code of Conduct: http://python.org/psf/codeofconduct/

Reply via email to