99 Bottles of Beer/Python: Difference between revisions

m
Fixed syntax highlighting.
(moving code from main task-page to sub-page)
m (Fixed syntax highlighting.)
 
(4 intermediate revisions by 3 users not shown)
Line 2:
[[99 Bottles of Beer]] done in Python.
 
<span style='font-family: "Linux Libertine",Georgia,Times,serif;font-size:150%;'>[[Python]]</span><hr>
=={{header|Python}}==
 
===Normal Code===
<syntaxhighlight lang ="python">def pluralsing(wordb, amountend): # Correctly pluralize a word.
print (b or 'No more', plural('bottle',+('s' if b-1 else ''), end)
if amount == 1:
return word
else:
return word + 's'
 
def sing(b, end): # Sing a phrase of the song, for b bottles, ending in end
print b or 'No more', plural('bottle', b), end
 
for i in range(99, 0, -1):
sing(i, 'of beer on the wall,')
sing(i, 'of beer,')
print ('Take one down, pass it around,')
sing(i-1, 'of beer on the wall.\n')</langsyntaxhighlight>
 
===Using a template===
<langsyntaxhighlight lang="python">verse = '''\
%i bottles of beer on the wall
%i bottles of beer
Line 29 ⟶ 23:
 
for bottles in range(99,0,-1):
print verse % (bottles, bottles, bottles-1) </langsyntaxhighlight>
 
===New-style template (Python 2.6)===
<langsyntaxhighlight lang="python">verse = '''\
{some} bottles of beer on the wall
{some} bottles of beer
Line 40 ⟶ 34:
 
for bottles in range(99,0,-1):
print verse.format(some=bottles, less=bottles-1) </langsyntaxhighlight>
 
==="Clever" generator expression===
<langsyntaxhighlight lang="python">a, b, c, s = " bottles of beer", " on the wall\n", "Take one down, pass it around\n", str
print "\n".join(s(x)+a+b+s(x)+a+"\n"+c+s(x-1)+a+b for x in xrange(99, 0, -1))</langsyntaxhighlight>
 
===Enhanced "Clever" generator expression using lambda===
<langsyntaxhighlight lang="python">a = lambda n: "%u bottle%s of beer on the wall\n" % (n, "s"[n==1:])
print "\n".join(a(x)+a(x)[:-13]+"\nTake one down, pass it around\n"+a(x-1) for x in xrange(99, 0, -1))</langsyntaxhighlight>
 
===Using a generator expression (Python 3)===
<langsyntaxhighlight lang="python">#!/usr/bin/env python3
"""\
{0} {2} of beer on the wall
Line 64 ⟶ 58:
"bottle" if i - 1 == 1 else "bottles"
) for i in range(99, 0, -1)
), end="")</langsyntaxhighlight>
 
===A wordy version===
<langsyntaxhighlight lang="python">ones = (
'', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine'
)
Line 105 ⟶ 99:
print takeonedown
print bottles(beer-1), onthewall
print</langsyntaxhighlight>
 
===String Formatting===
<langsyntaxhighlight lang="python">for n in xrange(99, 0, -1):
## The formatting performs a conditional check on the variable.
## If it formats the first open for False, and the second for True
Line 114 ⟶ 108:
print n, 'bottle%s of beer.' % ('s', '')[n == 1]
print 'Take one down, pass it around.'
print n - 1, 'bottle%s of beer on the wall.\n' % ('s', '')[n - 1 == 1]</langsyntaxhighlight>
 
===Python 3 f-strings and walrus operator===
<syntaxhighlight lang="python">bottles = 100
while (bottles:=bottles-1) != 0:
print(f"{bottles} bottles of beer on the wall\n{bottles} bottles of beer\nTake one down, pass it around\n{bottles-1} bottles of beer on the wall\n")</syntaxhighlight>
9,482

edits