Path: csiph.com!goblin1!goblin.stu.neva.ru!uio.no!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; '"""': 0.05; 'from:addr:yahoo.co.uk': 0.05; 'subject:test': 0.07; 'received:80.91': 0.09; 'received:80.91.229': 0.09; 'received:gmane.org': 0.09; 'received:list': 0.09; 'throw': 0.09; 'python': 0.10; 'output': 0.13; 'def': 0.13; '"%s': 0.16; '"hello': 0.16; "'s')": 0.16; 'bugs.': 0.16; 'dictionaries': 0.16; 'fold': 0.16; 'iterators': 0.16; 'optimised': 0.16; 'pep8': 0.16; 'received:80.91.229.3': 0.16; 'received:plane.gmane.org': 0.16; 'wrote:': 0.16; 'programmer': 0.18; 'input': 0.18; 'language': 0.19; '%s"': 0.22; 'arm': 0.22; 'decorator': 0.22; 'lawrence': 0.22; 'code.': 0.23; 'header:In-Reply-To:1': 0.24; 'header:User- Agent:1': 0.26; 'header:X-Complaints-To:1': 0.26; 'distribute': 0.27; 'define': 0.27; 'question': 0.27; 'yield': 0.27; 'function': 0.28; '**kwargs)': 0.29; '**kwargs):': 0.29; 'program,': 0.29; 'print': 0.30; 'code': 0.30; "can't": 0.32; 'language.': 0.32; 'source': 0.33; 'decorators': 0.33; 'hell': 0.33; 'lists': 0.34; 'could': 0.35; 'propose': 0.35; 'skip:p 30': 0.35; 'there': 0.36; 'to:addr:python-list': 0.36; 'subject:: ': 0.37; 'two': 0.37; 'method': 0.37; 'received:org': 0.37; 'end': 0.39; 'to:addr:python.org': 0.40; 'mark': 0.40; 'some': 0.40; 'questions': 0.40; 'provide': 0.61; 'different': 0.63; 'our': 0.64; 'between': 0.65; 'python-list': 0.66; 'here': 0.66; 'subjectcharset:utf-8': 0.71; 'paper': 0.73; 'decorate': 0.84; 'f(*args,': 0.84; 'function():': 0.84; 'pythonistas,': 0.84; 'subject:you': 0.85; 'afford': 0.91; 'sheet': 0.93 X-Injected-Via-Gmane: http://gmane.org/ To: python-list@python.org From: Mark Lawrence Subject: =?UTF-8?Q?Re:_A_little_test_for_you_Guys=f0=9f=98=9c?= Date: Wed, 23 Sep 2015 00:32:18 +0100 References: <78fc66f6-04f9-4b84-8410-2e74fb75fbb4@googlegroups.com> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-Gmane-NNTP-Posting-Host: 195.147.66.69 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:38.0) Gecko/20100101 Thunderbird/38.2.0 In-Reply-To: <78fc66f6-04f9-4b84-8410-2e74fb75fbb4@googlegroups.com> X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 111 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1442964771 news.xs4all.nl 23785 [2001:888:2000:d::a6]:59703 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:97008 On 22/09/2015 19:43, Python_Teacher via Python-list wrote: > you have 10 minutes😂 Good luck!! > > > 1. What is PEP8 ? It's the one between PEP7 and PEP9. > > 2. What are the different ways to distribute some python source code ? Write on sheet of paper, fold into paper dart, throw from window. > > 2 Lists Tut, tut, tut. > > Let's define the function plural : > > def plural(words): > plurals = [] > for word in words: > plurals.append(word + 's') > return plurals > > for word in plural(['cabagge','owl','toy']): > print word > > Question : How could the code of the function plural be optimised? It is all ready optimised for programmer time so don't bother with it unless there are unforeseen bugs. > > 3 Dictionaries > > Here are two dictionnaries : > > input = { > 'foo1': 'bar1', > 'chose': 'truc', > 'foo2': 'bar2', > } > output = { > 'bar1': 'foo1', > 'truc': 'chose', > 'bar2': 'foo2' > } > > Question : Propose a function that returns output when you provide input ? def function(): return input("Who cares?") > > 4 Iterators > > Let's consider this program : > > def program_1(): > yield 1 > yield 2 > yield 3 > > g = program_1() > a = list(g) > b = list(g) > c = g() > > Question : At the end of the program, > > 1. What is the type of g ? > 2. What is the value of a ? > 3. What is the value of b ? > 4. What is the value of c ? How the hell would I know? > > 5 Decorators > > Let's consider now : > > def str2print(f): > def str2print_wrap(*args, **kwargs): > """wrapper""" > s = f(*args, **kwargs) > print s > return str2print_wrap > > def hello(s): > """ Return "Hello $s" """ > return "%s %s" % ("Hello", s) > > Questions : > > 1. Decorate the method 'hello' with 'str2printf' and write the corresponding code. > 2. What is the effect of the decorator on a call to the new method 'hello' ? > 3. What is the return value of hello.__doc__ > Can't afford decorators, they cost an arm and a leg in the UK. -- My fellow Pythonistas, ask not what our language can do for you, ask what you can do for our language. Mark Lawrence