2015-09-05 10:44 GMT+02:00 haypo s <[email protected]>: > PEP 498 allows to write >'abc' f'string'< which is replaced with >>'abc' 'string'.__format__()< whereas str+str is a bad practice.
Oops, you should read which is replaced with >'abc' + 'string'.__format__()< with a '+' between the two strings. Victor _______________________________________________ Python-Dev mailing list [email protected] https://mail.python.org/mailman/listinfo/python-dev Unsubscribe: https://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
