[issue34554] Add match built-in function

2018-08-31 Thread mokhalid
mokhalid added the comment: Thanks so much, I will do it :) -- ___ Python tracker <https://bugs.python.org/issue34554> ___ ___ Python-bugs-list mailin

[issue34554] Add match built-in function

2018-08-31 Thread mokhalid
Change by mokhalid : -- title: Add match built in functio -> Add match built-in function ___ Python tracker <https://bugs.python.org/issue34554> ___ ___ Py

[issue34554] Add match built in functio

2018-08-31 Thread mokhalid
Change by mokhalid : -- title: add match built in function -> Add match built in functio ___ Python tracker <https://bugs.python.org/issue34554> ___ ___ Py

[issue34554] add match built in function

2018-08-31 Thread mokhalid
mokhalid added the comment: sorry I forget to print text i mean: match([2,5,4,'Hello']): 2: print('here is 2') 6: print('here is 6') elif 'Hello': print('Hello world') 8:print('here is 8') e

[issue34554] add match built in function

2018-08-31 Thread mokhalid
New submission from mokhalid : match built-in function feature request: what is the match function do? the match function is doing something like if but with quick easy syntax that even beginners can use. possible syntax: match(list or string or dictionary): condition: event here