something
Some checks failed
Code Quality / lint (push) Failing after 1m52s
Run tests / test (push) Failing after 2m32s

This commit is contained in:
2026-01-15 22:18:04 +01:00
parent 12389ba862
commit b7fd8f8c6c
3 changed files with 13 additions and 11 deletions

View File

@@ -1,12 +1,3 @@
# Python Project
A little template for Python projects.
## Testing
This project uses [`pytest`](https://docs.pytest.org/en/stable/), once installed the tests can be runned with:
```sh
pytest
```
# Uni Py Exercises
Just a collection of some exercises in Python from my university (😭)

View File

@@ -1,6 +1,11 @@
#! /usr/bin/env python
from strings import *
def main():
string_ex()
pass
if __name__ == "__main__":

6
src/strings.py Normal file
View File

@@ -0,0 +1,6 @@
def string_ex():
str = "Hello, world"
print(str)
print(len(str))