This commit is contained in:
2025-11-14 13:40:09 +01:00
parent 7c0e9588d2
commit b478d3808e
7 changed files with 21 additions and 2 deletions

18
Untitled.md Normal file
View File

@@ -0,0 +1,18 @@
```python
def fubar(n: int):
if isinstance(n, float) or n < 1:
return False
count = 1
while count <= n:
msg = count
if count % 3 == 0:
msg = "Foo"
if count % 5 == 0:
msg = "Bar"
if count % 15 == 0:
msg = "FooBar"
count += 1
print(msg, end=', ')
```