create example for basics

This commit is contained in:
michivonah 2023-10-08 15:25:43 +02:00
parent 9f569cac7b
commit 3798905807
2 changed files with 56 additions and 0 deletions

9
basics/basics.md Normal file
View file

@ -0,0 +1,9 @@
# Basics in Python
## String functions
## Core concepts
Check if execution is in main program
````python
if __name__ == '__main__':
````