Update tech_docs/python/fizzbuzz.md

This commit is contained in:
2025-04-08 14:04:54 +00:00
parent cce14e2b67
commit fb90d28cff

View File

@@ -1,3 +1,4 @@
```python
def fizz_buzz(n): def fizz_buzz(n):
""" """
Print the FizzBuzz sequence from 1 to n. Print the FizzBuzz sequence from 1 to n.
@@ -24,4 +25,5 @@ def main():
print("Please enter a valid integer.") print("Please enter a valid integer.")
if __name__ == "__main__": if __name__ == "__main__":
main() main()
```