Assignment 18 — function introduction

Due October 24


Module olio.py


Function voting_age()

x = olio.voting_age()

y = olio.voting_age()



Function has_blanks( s )

x = 'CS 1112'

y = 'the_aarvark_said_arf_arf'

b1 = olio.has_blanks( x )

b2 = olio.has_blanks( y )



Function great_seal()

olio.great_seal( )

print()

olio.great_seal( )

print()

produces as output

E Pluribus Unum

E Pluribus Unum


Function a_ing( n )

olio.a_ing( 5 )

print()

olio.a_ing( 1 )

print()

olio.a_ing( 3 )

produces as output

a

aa

aaa

aaaa

aaaaa

a

a

aa

aaa

 


 

 

 
   
   
   
 
  © 2019 Jim Cohoon   Resources from previous semesters are available.