An open API service indexing awesome lists of open source software.

https://github.com/blackcoder56/gpt

Practice files: Python fundaments
https://github.com/blackcoder56/gpt

python3

Last synced: 3 months ago
JSON representation

Practice files: Python fundaments

Awesome Lists containing this project

README

          

```
fizzbuzz.py
Prints numbers 1-50
If number is a multiple of 3 -> Fizz
If number is a multiple of 5 -> Buzz
If number is a multiple of 3 and 5 -> FizzBuzz

```

```
is_palandrome.py
Checks if string is the same in backward as forword
Ignores punctuations, spances and Capitalizations

```

```
find_max_and_min.py
Finding the largest and smallest numbers without using buit-in functions.
You’re handling the logic to determine the largest and smallest values without using the max() and min() functions. Instead, you’re using comparison operations in the loop.
handling edge cases by using float('-inf') and float('inf') to initialize the largest and smallest values, ensuring your logic works for any input, even if the list contains negative values.
```

```
count_vowels.py
Counts the number of vowels in a string.
```