Python 3.2.2 (default, Sep 4 2011, 09:51:08) [MSC v.1500 32 bit (Intel)] on win32 Type "copyright", "credits" or "license()" for more information. >>> print "tere" SyntaxError: invalid syntax >>> print("tere") tere >>> print(3) 3 >>> 5*"tere" 'tereteretereteretere' >>> "tere" 'tere' >>> eesnimi="Juku" >>> print(eesnimi) Juku >>> dir("Juku") ['__add__', '__class__', '__contains__', '__delattr__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', '__init__', '__iter__', '__le__', '__len__', '__lt__', '__mod__', '__mul__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__rmod__', '__rmul__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'capitalize', 'center', 'count', 'encode', 'endswith', 'expandtabs', 'find', 'format', 'format_map', 'index', 'isalnum', 'isalpha', 'isdecimal', 'isdigit', 'isidentifier', 'islower', 'isnumeric', 'isprintable', 'isspace', 'istitle', 'isupper', 'join', 'ljust', 'lower', 'lstrip', 'maketrans', 'partition', 'replace', 'rfind', 'rindex', 'rjust', 'rpartition', 'rsplit', 'rstrip', 'split', 'splitlines', 'startswith', 'strip', 'swapcase', 'title', 'translate', 'upper', 'zfill'] >>> "Juku".lower() 'juku' >>> "Juku".isnumeric() False >>> "10".isnumeric() True >>> "Juku".startswith("J") True >>> "Juku".startswith("J") True >>> "11".isnumeric() True >>> "Juku tuli kooli".split() ['Juku', 'tuli', 'kooli'] >>> sonad="Juku tuli kooli".split() >>> print(sonad[1]) tuli >>> len(sonad) 3 >>> for sona in sonad: print sona[0] SyntaxError: invalid syntax >>> for sona in sonad: print(sona[0]) J t k >>> esitahed=[sona[0] for sona in sonad] >>> esitahed ['J', 't', 'k'] >>> jupid=[sona[0:2] for sona in sonad] >>> jupid ['Ju', 'tu', 'ko'] >>> sonad[-1] 'kooli' >>> sonad[0:2] ['Juku', 'tuli'] >>> otsad=[sonad[0], sonad[-1]] >>> otsad ['Juku', 'kooli'] >>> otsad.insert("proov") Traceback (most recent call last): File "", line 1, in otsad.insert("proov") TypeError: insert() takes exactly 2 arguments (1 given) >>> otsad.insert("proov",1) Traceback (most recent call last): File "", line 1, in otsad.insert("proov",1) TypeError: 'str' object cannot be interpreted as an integer >>> otsad.insert(1,"proov") >>> otsad ['Juku', 'proov', 'kooli'] >>> otsad.push("kuku") Traceback (most recent call last): File "", line 1, in otsad.push("kuku") AttributeError: 'list' object has no attribute 'push' >>> otsad.append("kuku") >>> otsad ['Juku', 'proov', 'kooli', 'kuku'] >>> otsad.pop() 'kuku' >>> otsad ['Juku', 'proov', 'kooli'] >>> sonad+otsad ['Juku', 'tuli', 'kooli', 'Juku', 'proov', 'kooli'] >>> # >>> ruudud=[x*x for x in range(10)] >>> ruudud [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] >>> range(10) range(0, 10) >>> print(range(10))รต SyntaxError: invalid syntax >>> print(range(10)) range(0, 10) >>> ruudud[0:3]+ruudud[7:10] [0, 1, 4, 49, 64, 81] >>> ruudud.sort(key=lambda x:x%10) >>> ruudud [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 >>> ================================ RESTART ================================ >>> 1 [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] Traceback (most recent call last): File "C:/python/algus/arvud.py", line 11, in yhelised(filter(lambda x:viimaneNr(x)==1, ruudud)) NameError: name 'yhelised' is not defined >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] 1 81 >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] 1 81 Traceback (most recent call last): File "C:/python/algus/arvud.py", line 18, in yhelised=[x in filter(yheline, ruudud)] NameError: name 'x' is not defined >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] 1 81 [1, 81] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] 1 81 [1, 81] [0, 2, 85, 13, 80, 50, 52, 85, 73, 130] >>> ================================ RESTART ================================ >>> 1 [0, 1, 4, 9, 16, 25, 36, 49, 64, 81] [0, 1, 81, 4, 64, 25, 16, 36, 9, 49] 1 81 [1, 81] [0, 2, 85, 13, 80, 50, 52, 85, 73, 130] [0, 2, 85, 13, 80, 50, 52, 85, 73, 130] >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/python/lugeja1.py", line 1, in f=open(kymmerida.csv, "r") NameError: name 'kymmerida' is not defined >>> ================================ RESTART ================================ >>> 1;1;1;0;3371,32;299,64;37,51;323,34;0,00;26,95;56,00;157,21;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;47,65; 1;1;1;1;3231,53;279,66;21,75;277,72;0,00;26,95;56,00;150,66;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;47,65; 1;1;1;2;3120,93;319,62;21,47;250,44;0,00;26,95;56,00;145,75;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;35,20; 1;1;1;3;3013,18;179,78;22,12;185,37;0,00;26,95;56,00;114,64;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;47,65; 1;1;1;4;2865,61;159,81;34,90;241,05;0,00;26,95;56,00;90,89;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,98; 1;1;1;5;2755,99;219,74;41,60;215,11;0,00;26,95;56,00;81,06;0,00;10,80;15,30;0,00;194,97;29,15;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,98; 1;1;1;6;2700,45;119,86;36,73;165,92;0,00;26,95;56,00;125,28;0,00;10,80;15,30;0,00;194,97;29,15;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,98; 1;1;1;7;2641,11;199,76;43,51;199,23;0,00;26,95;56,00;144,11;0,00;10,80;15,30;0,00;229,12;34,23;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,79; 1;1;1;8;2672,05;239,71;48,67;181,35;0,00;26,95;56,00;162,13;0,00;10,80;15,30;0,00;229,12;34,23;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,79; 1;1;1;9;2713,68;279,66;56,13;219,58;0,00;26,95;56,00;180,96;0,00;10,80;15,30;0,00;229,12;34,23;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,79; 1;1;1;10;2719,65;379,54;55,01;242,84;0,00;26,95;56,00;181,78;0,00;10,80;15,30;0,00;223,90;33,46;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,71; >>> ================================ RESTART ================================ >>> ['1', '1', '1', '0', '3371,32', '299,64', '37,51', '323,34', '0,00', '26,95', '56,00', '157,21', '0,00', '10,80', '15,30', '0,00', '170,30', '25,43', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '47,65', '\n'] ['1', '1', '1', '1', '3231,53', '279,66', '21,75', '277,72', '0,00', '26,95', '56,00', '150,66', '0,00', '10,80', '15,30', '0,00', '170,30', '25,43', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '47,65', '\n'] ['1', '1', '1', '2', '3120,93', '319,62', '21,47', '250,44', '0,00', '26,95', '56,00', '145,75', '0,00', '10,80', '15,30', '0,00', '170,30', '25,43', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '35,20', '\n'] ['1', '1', '1', '3', '3013,18', '179,78', '22,12', '185,37', '0,00', '26,95', '56,00', '114,64', '0,00', '10,80', '15,30', '0,00', '170,30', '25,43', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '47,65', '\n'] ['1', '1', '1', '4', '2865,61', '159,81', '34,90', '241,05', '0,00', '26,95', '56,00', '90,89', '0,00', '10,80', '15,30', '0,00', '170,30', '25,43', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '28,98', '\n'] ['1', '1', '1', '5', '2755,99', '219,74', '41,60', '215,11', '0,00', '26,95', '56,00', '81,06', '0,00', '10,80', '15,30', '0,00', '194,97', '29,15', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '28,98', '\n'] ['1', '1', '1', '6', '2700,45', '119,86', '36,73', '165,92', '0,00', '26,95', '56,00', '125,28', '0,00', '10,80', '15,30', '0,00', '194,97', '29,15', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '28,98', '\n'] ['1', '1', '1', '7', '2641,11', '199,76', '43,51', '199,23', '0,00', '26,95', '56,00', '144,11', '0,00', '10,80', '15,30', '0,00', '229,12', '34,23', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '28,79', '\n'] ['1', '1', '1', '8', '2672,05', '239,71', '48,67', '181,35', '0,00', '26,95', '56,00', '162,13', '0,00', '10,80', '15,30', '0,00', '229,12', '34,23', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '28,79', '\n'] ['1', '1', '1', '9', '2713,68', '279,66', '56,13', '219,58', '0,00', '26,95', '56,00', '180,96', '0,00', '10,80', '15,30', '0,00', '229,12', '34,23', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '28,79', '\n'] ['1', '1', '1', '10', '2719,65', '379,54', '55,01', '242,84', '0,00', '26,95', '56,00', '181,78', '0,00', '10,80', '15,30', '0,00', '223,90', '33,46', '22,50', '22,50', '22,50', '22,50', '0,00', '161,50', '16,83', '0,00', '255,00', '161,50', '340,00', '129,60', '129,60', '129,60', '133,60', '133,60', '128,00', '129,60', '129,60', '34,85', '39,95', '122,40', '340,00', '340,00', '64,00', '292,40', '81,60', '45,90', '28,05', '19,55', '4,25', '7,65', '85,00', '144,50', '160,00', '255,00', '1020,00', '118,40', '57,60', '250,00', '28,71', '\n'] >>> ================================ RESTART ================================ >>> 3371,32 3231,53 3120,93 3013,18 2865,61 2755,99 2700,45 2641,11 2672,05 2713,68 2719,65 >>> ================================ RESTART ================================ >>> 1;1;1;3;3013,18;179,78;22,12;185,37;0,00;26,95;56,00;114,64;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;47,65; >>> ================================ RESTART ================================ >>> ['1;1;1;3;3013,18;179,78;22,12;185,37;0,00;26,95;56,00;114,64;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;47,65;\n', '1;1;1;4;2865,61;159,81;34,90;241,05;0,00;26,95;56,00;90,89;0,00;10,80;15,30;0,00;170,30;25,43;22,50;22,50;22,50;22,50;0,00;161,50;16,83;0,00;255,00;161,50;340,00;129,60;129,60;129,60;133,60;133,60;128,00;129,60;129,60;34,85;39,95;122,40;340,00;340,00;64,00;292,40;81,60;45,90;28,05;19,55;4,25;7,65;85,00;144,50;160,00;255,00;1020,00;118,40;57,60;250,00;28,98;\n'] >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/python/lugeja3.py", line 3, in kaksjaama=[rida.split(";")[4, 6] for rida in tabel[3:5]] File "C:/python/lugeja3.py", line 3, in kaksjaama=[rida.split(";")[4, 6] for rida in tabel[3:5]] TypeError: list indices must be integers, not tuple >>> ================================ RESTART ================================ >>> >>> ================================ RESTART ================================ >>> [['3013,18', '179,78'], ['2865,61', '159,81']] >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/python/lugeja3.py", line 3, in kaksjaama=[rida.split(";")[4,6] for rida in tabel[3:5]] File "C:/python/lugeja3.py", line 3, in kaksjaama=[rida.split(";")[4,6] for rida in tabel[3:5]] TypeError: list indices must be integers, not tuple >>> ================================ RESTART ================================ >>> [['3013,18', '22,12'], ['2865,61', '34,90']] >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/python/lugeja3.py", line 4, in kaksjaama=[[jaamad[4], jaamad[6]] for jaamad in jaamadrida.split(";") for rida in tabel[3:5]] NameError: name 'jaamadrida' is not defined >>> ================================ RESTART ================================ >>> Traceback (most recent call last): File "C:/python/lugeja3.py", line 4, in kaksjaama=[[jaamad[4], jaamad[6]] for jaamad in rida.split(";") for rida in tabel[3:5]] NameError: name 'rida' is not defined >>> ================================ RESTART ================================ >>> [ at 0x02391260>, at 0x023912D8>] >>> ================================ RESTART ================================