Ad
Code
Diff
  • theletterh = lambda howmuchh: 'H' * howmuchh
    #H return and H print (H๐Ÿ˜€๐Ÿ˜ƒ๐Ÿ˜)
    • def theletterh(howmuchh=1):
    • for i in range(howmuchh):
    • print('H')
    • return 'H' * howmuchh
    • theletterh = lambda howmuchh: 'H' * howmuchh
    • #H return and H print (H๐Ÿ˜€๐Ÿ˜ƒ๐Ÿ˜)