= Treffen vom 24. 2. 2021 = * [[https://www.meetup.com/PYUGAT/events/276425087/|Meetup-Seite zu diesem Treffen]] /!\ * ONLINE-TREFFEN: https://custom.jitsi.rocks/PyUGAT == Agenda == * Begrüßung * Metalab * Vorstellungsrunde * [[FrontPage|Wiki]], MailingLists, [[https://twitter.com/pyugat|Twitter]], [[http://www.meetup.com/PYUGAT/|Meetup]], [[http://webchat.freenode.net/?channels=%23pyugat|IRC: #pyugat on freenode]] * Am Wiki anmelden & [[CategoryHomepage|persönliche Seite]] anlegen (Kontaktinfos, Name, Interessen, Foto,…) * Mögliche Themen in [[FutureTalks]] eintragen * Nächsten Termin festlegen * Events * [[https://xtremepython.dev/2021/|The XtremePython Online Conference]] * Buchbesprechungen? * [[Jobs|Job-Börse]] * Zeiteinteilung für den Abend festlegen * Wer hat Kurzvorträge mitgebracht? * Groben Zeitplan für Hauptvortrag festlegen == Programm == === Python und Prolog mit pyswip (Christoph) === Wer mitmachen will, installiert: * https://github.com/yuce/pyswip * https://www.swi-prolog.org/ und testet mit diesem Programm: {{{#!highlight python from pyswip import Prolog prolog = Prolog() prolog.assertz("factorial(0, 1)") prolog.assertz("""factorial(N, F) :- N #> 0, N1 #= N - 1, factorial(N1, F1), F #= N * F1""") for result in prolog.query("factorial(5, X)"): print(result["X"]) }}} Links: * [[https://www.metalevel.at/prolog|The Power of Prolog]] * Constraint Based Programming: https://artificialcognition.github.io/who-owns-the-zebra ([[https://github.com/python-constraint/python-constraint|python-constraint]]) == Diskussions- und Plauderrunde == * ''tbd'' ---- CategoryShownotes