python
https://github.com/geekcomputers/python
Python
My Python Examples
Triage Issues!
When you volunteer to triage issues, you'll receive an email each day with a link to an open issue that needs help in this project. You'll also receive instructions on how to triage issues.
Triage Docs!
Receive a documented method or class from your favorite GitHub repos in your inbox every day. If you're really pro, receive undocumented methods or classes and supercharge your commit history.
Python not yet supported10 Subscribers
Add a CodeTriage badge to python
Help out
- Issues
- Add requirements.txt file
- Using elif instead of if and nested else-if
- Hello
- Please fix broken links in README.md file
- Update README.md
- Jsk
- "Square root" contains no code
- "Square root" contains no code
- import PySimpleGUI as sg # Define o layout da janela layout = [ [sg.Text("Nome:"), sg.InputText(key="nome")], [sg.Text("E-mail:"), sg.InputText(key="email")], [sg.Text("Telefone:"), sg.InputText(key="telefone")], [sg.Button("Cadastrar")] ] # Cria a janela janela = sg.Window("Cadastro").Layout(layout) # Loop principal while True: evento, valores = janela.Read() if evento == sg.WINDOW_CLOSED: break if evento == "Cadastrar": # Aqui você pode incluir sua lógica para cadastrar os dados print(valores["nome"], valores["email"], valores["telefone"]) # Fecha a janela janela.Close()
- !pip install tweepy
- Docs
- Python not yet supported