I'm new to Python and I have to solve this exercise:
Develop a program for the check function that calculates and returns the REGISTRATION_TIME_TIME_DATE_LABORATE of a worker in a day starting from the parameters TIME_IN_ENTERED AND TIME_I...
I am developing a small exercise of the implementation of a class oriented to handling fractions with their respective methods, then I must use it to make a small calculator, the module with the class works perfect and I have tested each of the...
Someone knows why it appears in the following code:
ERROR in line 6 "tuple" object has no attribute 'split'
The code is as follows:
import time
with open('FicheroEntrada.csv') as infile1, open('Diferencias.txt', 'w') as outfile:...
I have this program
#importo las librerias
from Tkinter import *
from ttk import *
class Aplicacion():
def __init__(self):
self.raiz = Tk()
self.raiz.title("Alta Velocidad")
# Declara variables de control...
Hi, I would like to know how to use ENTER and Tab when telling the user to enter something with raw_input
Code:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
outfile = open('codehero.txt', 'w') # Indicamos el valor 'w'.
outfile.wri...
Yesterday I asked something about the form where they helped me quickly. Today I come, with the same subject, for that form that what I put in that form is not saved in the database and redirects me to the url but you do not show them to me....
Hi, I have a question about sockets, I am going to try to explain everything to you so that you can solve this doubt I have, I hope not to disappoint you with my question. Well, the problem I have is that when I'm using a client I can put as man...
I have made a client-server application in python. But when, for example, I turn off the router, the ip is no longer useful. I need to know how to implement no-ip in my server and client programmed in python and know if it is possible, since to...
I am developing a web scraper in python that what it does is to take users and passwords from a database and then go to an external web page and fill out the form to later log in, it works perfect with the first username and password, but when i...