Ich bin völlig neu zu programmieren. Ich versuche zu verschachteln, was ich für eine "for-Schleife" innerhalb dessen halte, was ich für eine "for-Schleife" halte. Jedes Mal, wenn ich das Programm starte, erhalte ich einen Fehler: "Es liegt ein Fehler in Ihrem Programm vor: unerwartet unerwartet". Ich habe wirklich keine Ahnung, wie ich es beheben kann. Jede Hilfe würde sehr geschätzt werden. Hier ist der Code:Verschachtelte For-Loop-Fehler Python
import urllib2
import time
stocksToPull = 'AAPL'
def pullData(stock):
try:
pricedata = urllib2.urlopen("http://www.google.com/finance/getprices?i=60&p=1d&f=d,o,h,l,c,v&df=cpct&q="+stock+"").read()
pricevalues = pricedata.split()
current_price = float(pricevalues[len(pricevalues)-1].split(",")[4]) #High
pricevalues = pricedata.split()
Pcurrent_price = float(pricevalues[len(pricevalues)-1].split(",")[2]) #Open
DPCge= (current_price/Pcurrent_price)/Pcurrent_price #Daily Precent Change
number = 0.010000000000
# This is the begging of the nested for-loop
if stock == 'AAPL' and DPCge> number:
\t for eachStock in stocksToPull:
\t \t stocksToPull = 'AAPL'
\t \t pullData(eachStock)
\t \t \t def pullData(stock):
\t \t \t try:
pricedata = urllib2.urlopen("http://www.google.com/finance/getprices?i=60&p=1d&f=d,o,h,l,c,v&df=cpct&q="+stock+"").read()
pricevalues = pricedata.split()
current_price = float(pricevalues[len(pricevalues)-1].split(",")[4]) #High
pricevalues = pricedata.split()
Pcurrent_price = float(pricevalues[len(pricevalues)-1].split(",")[2]) #Open
DPCge= (current_price/Pcurrent_price)/Pcurrent_price #Daily Precent Change
number = 0.010000000000
except Exception,e:
print'main loop',str(e)
for eachStock in stocksToPull:
pullData(eachStock)
Wenn dies der genaue Code ist, den Sie verwenden, müssen Sie 'except' Block einrücken, um mit' try' Block übereinzustimmen. – Lafexlos
Ihre Funktion ist ebenfalls doppelt aufgeführt, es sei denn, Sie möchten dies. Ihr Code kann wahrscheinlich komprimiert werden –