Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
464 views
in Technique[技术] by (71.8m points)

indentation - Python printing spaces, fizz buzz


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Probably f strings could work, but it only works for python 3.6 and above of it.

def fizzbuzz(n):
  for num in range(1,n+1):
    if num % 3 == 0 and num % 5 == 0:
      print(f'{num} FizzBuzz')
    elif num % 3 == 0:
      print(f'{num} Fizz')
    elif num % 5 ==0:
      print(f'{num} Buzz')
    else:
      print(f'{num}:')
      
fizzbuzz(n=21)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...