Can someone explain why some people use this kind of symbols in their code? it's kind of confusing for me and maybe for all the newbies out there.
I am learning Python and I reached a lesson where i should build a web-crawler (spider),in the example they use only how to grab data from a specific url in a specific way i looked in the internet for a general way and found this Code with lot of symbols i know some of them but the rest i have no clue here is a chunk of the code i found with symbols
import sys, thread, Queue, re urllib, urlparse, time, os
dupcheck = set()
q=Queue.Queue(100)
q.put(sys.argv[1])
def queueURLs(html,originalink):
for url in re.findall('"'<a[^>]+href["'](.`[^"']+)["']'"', html,re.I):)
what does symbols like this ^> mean in the code i know that a stand for anchor and what href stands for but those symbols are confusing