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):
"""
Print the FizzBuzz sequence from 1 to n.
@@ -25,3 +26,4 @@ def main():
if __name__ == "__main__":
main()
```