Zusammenfassung – die neusten Beiträge

Python: Wie kann ich feld1 bis feld7 so zusammenfassen, sodass ich das nicht alles einzeln eingeben muss?

Hey, ich möchte feld1 bis feld7 so zusammenfassen, sodass ich das nicht alles einzeln eingeben muss. Dazu finde ich nur leider nichts im Internet.

import tkinter as tk from tkinter import *

modul = tk.Tk()
modul.geometry("900x900")
modul.title("Bunt3x3")
modul.resizable(width=False, height=False)

r = "red"
y = "yellow"
g = "green"
b = "blue"

def change():
  if feld1["bg"] == r:
    feld1.config(bg=g)
    feld3.config(bg=g)
    feld5.config(bg=g)
    feld7.config(bg=g)
    feld2.config(bg=b)
    feld4.config(bg=b)
    feld6.config(bg=b)
    feld8.config(bg=b)

    feldlabel.config(text="Rot & gelb")

  elif feld1["bg"] == g:
    feld1.config(bg=r)
    feld3.config(bg=r)
    feld5.config(bg=r)
    feld7.config(bg=r)
    feld2.config(bg=y)
    feld4.config(bg=y)
    feld6.config(bg=y)
    feld8.config(bg=y)

    feldlabel.config(text="Gruen & blau")

feld1 = tk.Frame(bg=r, width=300, height=300)
feld1.grid(column=1, row=1)
feld3 = tk.Frame(bg=r, width=300, height=300)
feld3.grid(column=3, row=1)
feld5 = tk.Frame(bg=r, width=300, height=300)
feld5.grid(column=1, row=3)
feld7 = tk.Frame(bg=r, width=300, height=300)
feld7.grid(column=3, row=3)
feld2 = tk.Frame(bg=y, width=300, height=300)
feld2.grid(column=2, row=1)
feld4 = tk.Frame(bg=y, width=300, height=300)
feld4.grid(column=1, row=2)
feld6 = tk.Frame(bg=y, width=300, height=300)
feld6.grid(column=3, row=2)
feld8 = tk.Frame(bg=y, width=300, height=300)
feld8.grid(column=2, row=3)

feld = tk.Frame(bg="white", width=300, height=300).grid(column=2, row=2)
feldlabel = tk.Label(text="Gruen & blau", bg="white", fg="black", font=("Arial", 15, "bold"))
feldlabel.grid(column=2, row=2)
feldbutton = tk.Button(text="Farbe aendern!", font=("Arial", 15, "bold"), bg="white", fg="black", command=change).place(x=370, y=470)
modul.mainloop()
programmieren, Array, Informatik, Python, Zusammenfassung, Variablen, list, Tkinter

The Circle (Buch) zusammenfassung?

Kann mir jemand zusammenfassen um was es in diesem Abschnitt geht ? (Quelle: Buch , The Circle)

He put his cup on the table next to him and rested his hands on his lap, his palms in a gentle embrace."So in general, would you say you behave differently when you know you´re being watched?"

"Sure of course" 

"Yes"

"And when there will be a historical record.That is, when or if your behavior will be permanently accessible.That a video of your behavior, for example, will exist forever."

"Yes" 

"Good. And do you remember my talk from earlier in the summer, about the ultimate goal of SeeChange?"

"I know it would eliminate most crime , if there was full saturation."

Balley seemed pleased "Right. Correct . Every citizens, like Gary Katz and Walt Lefebure in this instance, because they look the time to set up their cameras, they help keep us all safe. The crime was minor in this case, and there were no victims, thank god. You´re alive. Marion´s busines, and the kayaking industry generally, lives to see another day. But one night of selffshness from you could have risked it all. The individual act has reiverberations that can be nearly endless.Do you agree?"

"I do, I know. And here Mae again had the feeling that she was a very short sighted person,who jeopardized all she´d been given by the Circle.

"Mr. Bailey, I can´t believe I did this. And I know you´re wondering if I fit in here. I just want you to know how much I value my position here and your faith in me. And I want to honor tha. I´ll do anything to make this up to you Seriously, I´ll take on any extra work, I´ll do anything, Just tell me"

Bailey´s face broke into a highly amused grin."Mae, your job isn´t in jeopardy . You´re here for good Annie´s here for good.Sorry if you belieed otherwisen,for even a second. We don´t want either of you to ever leave."

"That´s very good to hear .Thank you," Mae said, though her heart was hammering harder now.He smiled, nodding, as if happy an relieved to have all that settled."But this whole episode gives us a very important teachabble moment, don´t you think?" The question seemed rhetorical, but Mae nodded anyway " Mae,"he said"when is a secret a good thig?"

Englisch, Buch, Schule, Zusammenfassung

Wie wichtig ist eine Kladde im Aufsatz und wie kann ich mich in Aufsätzen verbessern?

Hallo Leute, ich wollte gerne mal von euch wissen, für wie wichtig ihr eine Kladde beim Deutsch oder Englisch Aufsatz haltet.

Ich handhabe das bis jetzt so, dass ich mir nie eine Kladde mache, was aber zu einer schwachen Struktur und somit Defiziten in der Note führt, jedoch ist die Zeit oft zu knapp, um eine Kladde anzulegen (90 Minuten sind einfach zu wenig bei der Menge, die man schreiben muss). Ich wollte fragen, ob ihr es trotzdem für wichtiger haltet, die Kladde anzufertigen oder doch mehr auf die Zeit achten würdet.

Mein Englischlehrer hatte bei mir angemerkt, dass ich es zwar gut formulieren könne, aber man merkt, dass ich "drauf losschreibe" und dadurch z.B. Strukturen geschwächt werden.

Außerdem fällt es mir schwer, einfach nur eine einfache Zusammenfassung eines Textes zu schreiben. Eine Analyse hingegen gelingt mir. Das hat man in meiner letzten Englisch-Klausur (es wurden alle Aufgaben einzeln benotet und zu einer Inhaltsnote zusammengefasst, die dann mit der Note der sprachlichen Leistung zu 50% verrechnet wird.) gemerkt. Ich habe in der Textzusammenfassung nur 5 Punkte (4), bei der Analyse hingegen 13 Punkte (1-).

Wie kann ich daran arbeiten?

Ich finde das sehr ärgerlich, da ich die schönen Noten immer an den einfachsten Aufgaben liegen lasse.

Danke schon mal im Voraus für eure Antworten

Gruß Sebastian

Englisch, Deutsch, Schule, Aufsatz, Klausur, textanalyse, Zusammenfassung, Textaufgabe, Ausbildung und Studium

Meistgelesene Beiträge zum Thema Zusammenfassung