добавил домашку.

This commit is contained in:
vitalii Malcov 2023-10-23 06:58:46 +02:00
parent dc46c8b058
commit 01a417781b
7 changed files with 76 additions and 0 deletions

View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

View File

@ -0,0 +1,29 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="PyArgumentListInspection" enabled="true" level="WARNING" enabled_by_default="true">
<scope name="Project Files" level="WARNING" enabled="true" />
</inspection_tool>
<inspection_tool class="PyPep8NamingInspection" enabled="true" level="WEAK WARNING" enabled_by_default="true">
<option name="ignoredErrors">
<list>
<option value="N803" />
<option value="N806" />
<option value="N802" />
</list>
</option>
</inspection_tool>
<inspection_tool class="PyStatementEffectInspection" enabled="false" level="WARNING" enabled_by_default="false" />
<inspection_tool class="PyUnresolvedReferencesInspection" enabled="true" level="WARNING" enabled_by_default="true">
<option name="ignoredIdentifiers">
<list>
<option value="int.split" />
<option value="list.isnumeric" />
<option value="int.__getitem__" />
<option value="random.random.choice" />
<option value="bool.replace" />
</list>
</option>
</inspection_tool>
</profile>
</component>

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

View File

@ -0,0 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.11" project-jdk-type="Python SDK" />
</project>

View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/22.10.2023.iml" filepath="$PROJECT_DIR$/.idea/22.10.2023.iml" />
</modules>
</component>
</project>

View File

@ -0,0 +1,18 @@
from tkinter import *
def clicked():
res = "Hallo {}".format(txt.get())
lbl.configure(text=res)
window = Tk()
window.title("Willkommen bei der Bewerbung")
window.geometry('400x250')
lbl = Label(window, text="Hallo")
lbl.grid(column=0, row=0)
txt = Entry(window, width=20)
txt.grid(column=1, row=0)
btn = Button(window, text="Klicken!", command=clicked)
btn.grid(column=2, row=0)
window.mainloop()