Programmierung: Unterschied zwischen den Versionen
Aus Wiki_2020
Wezi (Diskussion | Beiträge) |
Wezi (Diskussion | Beiträge) Keine Bearbeitungszusammenfassung |
||
Zeile 1: | Zeile 1: | ||
=== Git / Github === | |||
*[https://www.elektormagazine.de/news/codedownload-von-github-in-weniger-als-1-minute?utm_source=Elektor+Deutschland&utm_campaign=94e98d977a-EMAIL_CAMPAIGN_10_6_2022_10_59&utm_medium=email&utm_term=0_7096e266f6-94e98d977a-234235097&mc_cid=94e98d977a&mc_eid=d69e41c3cb codedownload von github in weniger als 1 minute] | |||
*[https://www.elektormagazine.com/labs/github-for-dummies github for dummies] | |||
=== Python === | === Python === | ||
* [http://pythontutor.com/visualize.html#mode=display Online Python Tutor] | |||
* [https://www.techbeamers.com/python-format-string-list-dict/#simple-example print() Formatierung] | |||
* [https://pymotw.com/3/porting_notes.html notes and tips for updating from Python 2 to Python 3] | |||
* https://docs.python.org/3.1/library/index.html#library-index | |||
* https://py-tutorial-de.readthedocs.io/de/latest/index.html | |||
* https://www.w3schools.com/python/default.asp | |||
* https://www.python-kurs.eu/python3_kurs.php | |||
* [https://www.python-kurs.eu/python3_skript_ausfuehren.php Python3 Tutorial] | |||
* [https://binged.it/2YE2G96 Pyton QT Raspberry] | |||
* [https://pythontips.com/2013/08/07/the-self-variable-in-python-explained/ SELF Explained] | |||
* [https://pythonbuch.com/objekte.html ''Objekte & self'' ] | |||
* https://en.wikibooks.org/wiki/A_Beginner's_Python_Tutorial | |||
* https://pythonspot.com | |||
* https://realpython.com/python3-object-oriented-programming/#what-is-object-oriented-programming-oop | |||
==== Codeexamples ==== | ==== Codeexamples ==== | ||
#An example of a class | #An example of a class | ||
Zeile 52: | Zeile 54: | ||
=== tkinter === | === tkinter === | ||
* ''Grafik mit tkinter'' https://pythonbasics.org/tkinter/ | |||
* http://effbot.org/tkinterbook/tkinter-index.htm#class-reference | |||
* https://tkdocs.com | |||
* https://pythonbasics.org/tkinter_scale/ | |||
* ''Raspi GUI TKinter '' https://docs.python.org/3/library/tkinter.html#a-simple-hello-world-program | |||
=== Diverse === | === Diverse === |
Version vom 7. Oktober 2022, 20:38 Uhr
Git / Github
Python
- Online Python Tutor
- print() Formatierung
- notes and tips for updating from Python 2 to Python 3
- https://docs.python.org/3.1/library/index.html#library-index
- https://py-tutorial-de.readthedocs.io/de/latest/index.html
- https://www.w3schools.com/python/default.asp
- https://www.python-kurs.eu/python3_kurs.php
- Python3 Tutorial
- Pyton QT Raspberry
- SELF Explained
- Objekte & self
- https://en.wikibooks.org/wiki/A_Beginner's_Python_Tutorial
- https://pythonspot.com
- https://realpython.com/python3-object-oriented-programming/#what-is-object-oriented-programming-oop
Codeexamples
#An example of a class class Shape: def __init__(self, x, y): self.x = x self.y = y self.description = "This shape has not been described yet" self.author = "Nobody has claimed to make this shape yet" def area(self): return self.x * self.y def perimeter(self): return 2 * self.x + 2 * self.y def describe(self, text): self.description = text def authorName(self, text): self.author = text def scaleSize(self, scale): self.x = self.x * scale self.y = self.y * scale #create 3 objekts of shape rectangle = Shape(100, 45) long_rectangle = Shape(120,10) fat_rectangle = Shape(130,120) #finding the area of your rectangle: print(rectangle.area()) #finding the perimeter of your rectangle: print(rectangle.perimeter()) #describing the rectangle rectangle.describe("A wide rectangle, more than twice\ as wide as it is tall") #making the rectangle 50% smaller rectangle.scaleSize(0.5) #re-printing the new area of the rectangle print(rectangle.area())
tkinter
- Grafik mit tkinter https://pythonbasics.org/tkinter/
- http://effbot.org/tkinterbook/tkinter-index.htm#class-reference
- https://tkdocs.com
- https://pythonbasics.org/tkinter_scale/
- Raspi GUI TKinter https://docs.python.org/3/library/tkinter.html#a-simple-hello-world-program
Diverse
- Online Progamming IDE verschiedenste Sprachen Java ,c c++ etc free
- Online-JAVA-Compiler free
- KISS_(Zufallszahlengenerator)
C
- A computer science portal for geeks
- C-Programmierung Wikibooks
- C-Programmierung allgemein
- PIC C XC8 Tutorial
- C-programmierung
- Ringpuffer
- C-Tutorial
- Das C Tutorial (deutsch)
- Fundamentals of the C Programming Language
MYSQL
Escape Sequence Character Represented by Sequence \0 An ASCII NUL (0x00) character. \' A single quote (“'”) character. \" A double quote (“"”) character. \b A backspace character. \n A newline (linefeed) character. \r A carriage return character. \t A tab character. \Z ASCII 26 (Control+Z). \\ A backslash (“\”) character. \% A “%” character. \_ A “_” character.