s_id string | p_id string | u_id string | date string | language string | original_language string | filename_ext string | status string | cpu_time string | memory string | code_size string | code string | error string | stdout string |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
s096947328 | p00000 | u580227385 | 1535437681 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | for I in range(0, 9)
for j in range(0, 9)
print(str(I) + "*" + str(j) + "=" + str(I * j))
| File "/tmp/tmpxtj84r4j/tmpw35ntimc.py", line 1
for I in range(0, 9)
^
SyntaxError: expected ':'
| |
s070810563 | p00000 | u580227385 | 1535437831 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | for I in range(1, 9)
for j in range(1, 9)
print(str(i) + "×" + str(j) + "=" + str(I * j))
| File "/tmp/tmpew96e3w9/tmp1prlco7k.py", line 1
for I in range(1, 9)
^
SyntaxError: expected ':'
| |
s696929093 | p00000 | u580227385 | 1535437873 | Python | Python3 | py | Runtime Error | 0 | 0 | 99 | for I in range(1, 9):
for j in range(1, 9):
print(str(i) + "×" + str(j) + "=" + str(I * j))
| Traceback (most recent call last):
File "/tmp/tmp9djbu_gr/tmpwb4ovs6d.py", line 3, in <module>
print(str(i) + "×" + str(j) + "=" + str(I * j))
^
NameError: name 'i' is not defined. Did you mean: 'I'?
| |
s101094990 | p00000 | u589479013 | 1535887790 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 | #include<stdio.h>
int main(){
return 0;
}
| File "/tmp/tmpaxqjj5qm/tmp0acrk2xz.py", line 3
int main(){
^^^^
SyntaxError: invalid syntax
| |
s390926587 | p00000 | u483716678 | 1546355288 | Python | Python | py | Runtime Error | 0 | 0 | 212 | x = 1;
while x <= 9 :
y = 1;
while y <= 9 :
z = x * y;
print(str(x) + " x " + str(y) + " = " + str(z) )
y = y + 1
print()
x = x + 1
| File "/tmp/tmpe8jfe6rt/tmpywkt1bwm.py", line 1
x = 1;
IndentationError: unexpected indent
| |
s260303665 | p00000 | u889593139 | 1559202135 | Python | Python3 | py | Runtime Error | 0 | 0 | 11 | safgdsgjhk
| Traceback (most recent call last):
File "/tmp/tmpxe5_74r5/tmp7m6s8rue.py", line 1, in <module>
safgdsgjhk
NameError: name 'safgdsgjhk' is not defined
| |
s711065464 | p00000 | u512033536 | 1414479359 | Python | Python3 | py | Runtime Error | 0 | 0 | 58 | for i in range(1, 10):
for j in range(1, 10):
print(i * j) | File "/tmp/tmp25ydlfw4/tmp7jis6lf8.py", line 2
for j in range(1, 10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s453343408 | p00000 | u512033536 | 1414480186 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | for i in range(1, 10):
for j in range(1, 10):
print(i + "x" + j + "=" + i * j) | Traceback (most recent call last):
File "/tmp/tmp37zinied/tmp7g_j7whq.py", line 3, in <module>
print(i + "x" + j + "=" + i * j)
~~^~~~~
TypeError: unsupported operand type(s) for +: 'int' and 'str'
| |
s555968168 | p00000 | u686067953 | 1415935156 | Python | Python | py | Runtime Error | 0 | 0 | 101 | for i in xrange(1,10):
for j in xrange(1,10):
print str(i)+ "x" + str(j) + "=" + str(i*J) | File "/tmp/tmprikc2w06/tmpkckuubtl.py", line 3
print str(i)+ "x" + str(j) + "=" + str(i*J)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s496090697 | p00000 | u145643522 | 1417907755 | Python | Python | py | Runtime Error | 0 | 0 | 112 | #include<stdio.h>
char a, b;int main(){for(a=1;a<=9;a++)for(b=1;b<=9;b++)printf("%dx%d=%d\n",a,b,a*b);return 0;} | File "/tmp/tmpcjfwndp9/tmpyaekt4_2.py", line 2
char a, b;int main(){for(a=1;a<=9;a++)for(b=1;b<=9;b++)printf("%dx%d=%d\n",a,b,a*b);return 0;}
^
SyntaxError: invalid syntax
| |
s393993684 | p00000 | u145643522 | 1417907766 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | #include<stdio.h>
char a, b;int main(){for(a=1;a<=9;a++)for(b=1;b<=9;b++)printf("%dx%d=%d\n",a,b,a*b);return 0;} | File "/tmp/tmpcs3ai_ig/tmpexufgufs.py", line 2
char a, b;int main(){for(a=1;a<=9;a++)for(b=1;b<=9;b++)printf("%dx%d=%d\n",a,b,a*b);return 0;}
^
SyntaxError: invalid syntax
| |
s303003139 | p00000 | u578674365 | 1418356817 | Python | Python | py | Runtime Error | 0 | 0 | 85 | max = 9
for x in xrange(max):
for y in xrange(max):
print %dx%d=%d % (x, y, x * y) | File "/tmp/tmpqffm8rcd/tmpmihej8vc.py", line 4
print %dx%d=%d % (x, y, x * y)
^^^^^^^^^^^
SyntaxError: cannot assign to expression
| |
s382589577 | p00000 | u090799640 | 1418567312 | Python | Python | py | Runtime Error | 0 | 0 | 93 |
for i in range(9):
for j in range(9):
print "%dx%d=%d", %(i+1, j+1, (i+1)*(j+1) | File "/tmp/tmpg40fk4w6/tmprbp6rq9f.py", line 4
print "%dx%d=%d", %(i+1, j+1, (i+1)*(j+1)
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s304076367 | p00000 | u846356981 | 1418779496 | Python | Python3 | py | Runtime Error | 0 | 0 | 97 | for i in range(9):
for j in range(9):))
print('%sx%s=%s' % ((i+1), (j+1), (i+1)*(j+1) | File "/tmp/tmp71s7e8rr/tmpbvezpjv5.py", line 2
for j in range(9):))
^
SyntaxError: unmatched ')'
| |
s720601746 | p00000 | u989992553 | 1420877363 | Python | Python | py | Runtime Error | 0 | 0 | 68 | line = sys.stdin.readlines()
a,b = map(int, line.strip().split(',')) | Traceback (most recent call last):
File "/tmp/tmpuq0llq_2/tmpmgc74mas.py", line 1, in <module>
line = sys.stdin.readlines()
^^^
NameError: name 'sys' is not defined
| |
s845379079 | p00000 | u145643522 | 1424077103 | Python | Python | py | Runtime Error | 0 | 0 | 1 | a | Traceback (most recent call last):
File "/tmp/tmp8tyt_92z/tmpojbz6lt4.py", line 1, in <module>
a
NameError: name 'a' is not defined
| |
s545132824 | p00000 | u145643522 | 1424077159 | Python | Python3 | py | Runtime Error | 0 | 0 | 1 | a | Traceback (most recent call last):
File "/tmp/tmpsdww3qb1/tmpr_6ciqit.py", line 1, in <module>
a
NameError: name 'a' is not defined
| |
s040543738 | p00000 | u888595898 | 1427206728 | Python | Python3 | py | Runtime Error | 0 | 0 | 79 | for i in range(1, 10):
for j in range(1, 10):
print i, "x", j, "=", i * j | File "/tmp/tmp_kulm3sa/tmp_h7qpv4m.py", line 3
print i, "x", j, "=", i * j
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s980955845 | p00000 | u879226672 | 1428507154 | Python | Python3 | py | Runtime Error | 0 | 0 | 85 | for i in xrange(1,10):
for j in xrange(1,10):
print('%sx%s=%s'%(i,j,i*j)) | Traceback (most recent call last):
File "/tmp/tmpuieok7st/tmpanfcjrb3.py", line 1, in <module>
for i in xrange(1,10):
^^^^^^
NameError: name 'xrange' is not defined. Did you mean: 'range'?
| |
s390682591 | p00000 | u145563629 | 1428817268 | Python | Python | py | Runtime Error | 0 | 0 | 179 | while 1:
try:
ls = raw_input()
except EOFError:
break
ls = ls.split()
st = str(float(ls[0]) / float(ls[1]))
s = 0
for i in st[2:int(ls[2]) + 2]:
s += int(i)
print st | File "/tmp/tmp9di31no7/tmph060cq7c.py", line 12
print st
^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s660242954 | p00000 | u542962065 | 1428922013 | Python | Python3 | py | Runtime Error | 0 | 0 | 81 | for i in range(9):
for j in range(9):
print str(i+1)+"x"+str(j+1)+"="+str(i*j) | File "/tmp/tmpvg0_vg0a/tmpekoexexc.py", line 3
print str(i+1)+"x"+str(j+1)+"="+str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s015398004 | p00000 | u691654201 | 1429321861 | Python | Python | py | Runtime Error | 0 | 0 | 96 | for i in range(1,9):
for j in range(1,9):
print str(i) + "x" + str(j) + "=" str(i*j) | File "/tmp/tmpc7huuozm/tmpya1e0tl5.py", line 3
print str(i) + "x" + str(j) + "=" str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s037510502 | p00000 | u691654201 | 1429322059 | Python | Python | py | Runtime Error | 0 | 0 | 98 | for i in range(1,10):
for j in range(1,10):
print str(i) + "x" + str(j) + "=" str(i*j) | File "/tmp/tmpb_bfs5iw/tmp_qyxvrsb.py", line 3
print str(i) + "x" + str(j) + "=" str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s492642124 | p00000 | u308369184 | 1430554023 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | for i in range(1,10)
for j in range(1,10)
print("%d x %d =%d %d(i,j,i*j) | File "/tmp/tmpnuvv5ns5/tmpjpbb67se.py", line 3
print("%d x %d =%d %d(i,j,i*j)
^
SyntaxError: unterminated string literal (detected at line 3)
| |
s078388503 | p00000 | u145563629 | 1430700235 | Python | Python | py | Runtime Error | 0 | 0 | 59 | import urllib2
urllib2.urlopen("http://157.7.73.137:11451") | Traceback (most recent call last):
File "/tmp/tmp94ybd6sx/tmpr5fffu2_.py", line 1, in <module>
import urllib2
ModuleNotFoundError: No module named 'urllib2'
| |
s930521584 | p00000 | u145563629 | 1430700375 | Python | Python | py | Runtime Error | 20 | 7520 | 59 | import urllib2
urllib2.urlopen("http://157.7.73.137:11451") | Traceback (most recent call last):
File "/tmp/tmpy5mnqhy1/tmpnk1hv2w9.py", line 1, in <module>
import urllib2
ModuleNotFoundError: No module named 'urllib2'
| |
s497412619 | p00000 | u145563629 | 1430708020 | Python | Python | py | Runtime Error | 0 | 0 | 125 | import commands
import urllib2
s = commands.getoutput("ps -a").split()
for i in s:
urllib2.urlopen("127.0.0.1/" + str(i)) | Traceback (most recent call last):
File "/tmp/tmpa4mfhtvf/tmp829ljguh.py", line 1, in <module>
import commands
ModuleNotFoundError: No module named 'commands'
| |
s373471576 | p00000 | u520870854 | 1431700741 | Python | Python | py | Runtime Error | 0 | 0 | 83 | for i in range(1,10):
for j in range(1, 10):
print i + "x" + j "=" +i*j | File "/tmp/tmpy37wnbz6/tmpq4qmuuqe.py", line 3
print i + "x" + j "=" +i*j
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s987464517 | p00000 | u520870854 | 1431700818 | Python | Python | py | Runtime Error | 0 | 0 | 84 | for i in range(1,10):
for j in range(1, 10):
print i + "x" + j "=" + i*j | File "/tmp/tmp7kapmjyz/tmpup75udys.py", line 3
print i + "x" + j "=" + i*j
^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s092519859 | p00000 | u520870854 | 1431700854 | Python | Python | py | Runtime Error | 0 | 0 | 86 | for i in range(1,10):
for j in range(1, 10):
print i + "x" + j + "=" + i*j | File "/tmp/tmpzftf8e4d/tmp2luq6ly6.py", line 3
print i + "x" + j + "=" + i*j
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s202012430 | p00000 | u520870854 | 1431701177 | Python | Python | py | Runtime Error | 0 | 0 | 99 | for i in range(1,10):
for j in range(1, 10):
print str(i) + "x" + str(j) "=" + str(i*j) | File "/tmp/tmp68bxefz9/tmp75r0eujy.py", line 3
print str(i) + "x" + str(j) "=" + str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s703551669 | p00000 | u304186356 | 1431792864 | Python | Python3 | py | Runtime Error | 0 | 0 | 119 | i=1
j=1
while i<10:
j=1
while j<10:
print i,'x',j,'=',i*j,"\n"
j=j+1
i=i+1 | File "/tmp/tmp623u4s75/tmp0pd29431.py", line 6
print i,'x',j,'=',i*j,"\n"
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s395149338 | p00000 | u304186356 | 1431793290 | Python | Python | py | Runtime Error | 0 | 0 | 65 | i=range(1,10)
for s in i:
for b in i:
print "%dx%d=%d",i,j,i*j | File "/tmp/tmp3c_a0gtf/tmpxvpks1r5.py", line 4
print "%dx%d=%d",i,j,i*j
^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s707120312 | p00000 | u442472098 | 1432645499 | Python | Python3 | py | Runtime Error | 0 | 0 | 140 | #!/usr/bin/env python
a, b = map(int, input().split())
if a < b:
print("a < b")
elif a > b:
print("a > b")
else:
print("a == b") | Traceback (most recent call last):
File "/tmp/tmpd83ekz6k/tmp9q98npco.py", line 2, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s109361749 | p00000 | u442472098 | 1432645615 | Python | Python3 | py | Runtime Error | 0 | 0 | 141 | #!/usr/bin/env python3
a, b = map(int, input().split())
if a < b:
print("a < b")
elif a > b:
print("a > b")
else:
print("a == b") | Traceback (most recent call last):
File "/tmp/tmp_ykvi5t_/tmphn_heukz.py", line 2, in <module>
a, b = map(int, input().split())
^^^^^^^
EOFError: EOF when reading a line
| |
s984936934 | p00000 | u568387576 | 1434963592 | Python | Python3 | py | Runtime Error | 0 | 0 | 121 | for i in range(1, 11):
for j in range(1, 11):
str = str(i) + "x" + str(j) + "=" + str(j*i)
print(str) | Traceback (most recent call last):
File "/tmp/tmp09e53msb/tmpx7fil0n_.py", line 3, in <module>
str = str(i) + "x" + str(j) + "=" + str(j*i)
^^^^^^
TypeError: 'str' object is not callable
| 1x1=1
|
s304158342 | p00000 | u390422052 | 1437206298 | Python | Python | py | Runtime Error | 0 | 0 | 74 | for i in xrange(1,10):
for j in xrange(1,10):
print '%dx%d=%d' % (i,j,i*j) | File "/tmp/tmpcvl6_6nk/tmp06uzfekd.py", line 2
for j in xrange(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s291569605 | p00000 | u775586391 | 1447920015 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | l = [i for i in range(1,10)]
for i in l:
for j in l:
print(str(i)+ 'x' + str(j) + '=' str(i*j)) | File "/tmp/tmpffysm54g/tmpce87c8yg.py", line 4
print(str(i)+ 'x' + str(j) + '=' str(i*j))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s267185099 | p00000 | u790959181 | 1453903605 | Python | Python | py | Runtime Error | 0 | 0 | 82 | for i in range(1, 10):
for j in range(1, 10):
print i + '×' + j + '=' + i*j | File "/tmp/tmp76biersn/tmpt3_7nzzo.py", line 3
print i + '×' + j + '=' + i*j
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s650887624 | p00000 | u790959181 | 1453903640 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | for i in range(1, 10):
for j in range(1, 10):
print i + '×' + j + '=' + i*j | File "/tmp/tmprjytkruv/tmp852u16ai.py", line 3
print i + '×' + j + '=' + i*j
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s307280325 | p00000 | u790959181 | 1453903665 | Python | Python3 | py | Runtime Error | 0 | 0 | 82 | for i in range(1, 10):
for j in range(1, 10):
print i + '×' + j + '=' + i*j | File "/tmp/tmp4fec5tf4/tmp44r054th.py", line 3
print i + '×' + j + '=' + i*j
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s301654396 | p00000 | u790959181 | 1453903862 | Python | Python | py | Runtime Error | 0 | 0 | 97 | for i in range(1, 10):
for j in range(1, 10):
print str(i) + '×' + str(j) + '=' + str(i*j) | File "/tmp/tmpgplrqx8l/tmpt6vhhdfc.py", line 3
print str(i) + '×' + str(j) + '=' + str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s733204610 | p00000 | u397460030 | 1456403692 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | for i in range(1,10):
print(i,"x",i,"=",i*i,sep="") | File "/tmp/tmpj2idksds/tmp87gza0fn.py", line 1
for i in range(1,10):
IndentationError: unexpected indent
| |
s884329874 | p00000 | u397460030 | 1456403822 | Python | Python3 | py | Runtime Error | 0 | 0 | 56 | for i in range(1,10):
print(i,"x",i,"=",i*i,sep="") | File "/tmp/tmp12t0m1p_/tmpsdctqfv3.py", line 1
for i in range(1,10):
IndentationError: unexpected indent
| |
s998318845 | p00000 | u397460030 | 1456403837 | Python | Python | py | Runtime Error | 0 | 0 | 56 | for i in range(1,10):
print(i,"x",i,"=",i*i,sep="") | File "/tmp/tmpdk6wko77/tmpo46rru6e.py", line 1
for i in range(1,10):
IndentationError: unexpected indent
| |
s804914653 | p00000 | u813534019 | 1460298394 | Python | Python | py | Runtime Error | 0 | 0 | 89 | for x in range(1,10):
for y in range(1,10):
print "%d??%d=%d" % (x, y , x*y) | File "/tmp/tmp7n_j8kry/tmpnyhdxdsg.py", line 3
print "%d??%d=%d" % (x, y , x*y)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s847546156 | p00000 | u813534019 | 1460298555 | Python | Python | py | Runtime Error | 0 | 0 | 88 | for x in range(1,10):
for y in range(1,10):
print "%d??%d=%d" % (x, y , x*y) | File "/tmp/tmp78q3vh82/tmp8wuh13mh.py", line 3
print "%d??%d=%d" % (x, y , x*y)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s442170350 | p00000 | u615353970 | 1461581339 | Python | Python3 | py | Runtime Error | 0 | 0 | 73 | for i in range(1,10):
for j in range(1,10): print "%dx%d=%d"%(i,j,i*j) | File "/tmp/tmpenixqj0z/tmpyzwzjpcq.py", line 2
for j in range(1,10): print "%dx%d=%d"%(i,j,i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s820854412 | p00000 | u765849500 | 1462189669 | Python | Python | py | Runtime Error | 0 | 0 | 102 | #coding: UTF-8
for i in range(1,10):
for j in range(1,10):
print(i + "*" + j + "=" + i*j) | Traceback (most recent call last):
File "/tmp/tmpvfarm0fz/tmplhaahmrd.py", line 5, in <module>
print(i + "*" + j + "=" + i*j)
~~^~~~~
TypeError: unsupported operand type(s) for +: 'int' and 'str'
| |
s169906912 | p00000 | u018967850 | 1462428487 | Python | Python | py | Runtime Error | 0 | 0 | 87 | for i in range(1,9):
for j in range(1,9):
print "%d x %d = %d" % (i,j,i*j)) | File "/tmp/tmpz_zzqx3g/tmpig1a7s12.py", line 3
print "%d x %d = %d" % (i,j,i*j))
^
SyntaxError: unmatched ')'
| |
s266752657 | p00000 | u278051393 | 1468412394 | Python | Python3 | py | Runtime Error | 0 | 0 | 68 | for i in range(1,10):
a = i
print(a + ???x??? + a + ???=??? + a*a) | File "/tmp/tmpxzhw00h0/tmp2wqho5pf.py", line 3
print(a + ???x??? + a + ???=??? + a*a)
^
SyntaxError: invalid syntax
| |
s261227490 | p00000 | u278051393 | 1468412465 | Python | Python3 | py | Runtime Error | 0 | 0 | 60 | for i in range(1,10):
a = i
print(a,???x???,a,???=???,a*a) | File "/tmp/tmp9lwywuhk/tmpc_groi_u.py", line 3
print(a,???x???,a,???=???,a*a)
^
SyntaxError: invalid syntax
| |
s598506227 | p00000 | u278051393 | 1468412580 | Python | Python3 | py | Runtime Error | 0 | 0 | 77 | for i in range(1,10):
for j in range(1,10):
print(i,???x???,j,???=???,i*j) | File "/tmp/tmpis3pnv8r/tmpoesanb5n.py", line 3
print(i,???x???,j,???=???,i*j)
^
SyntaxError: invalid syntax
| |
s483819686 | p00000 | u553881259 | 1472146573 | Python | Python | py | Runtime Error | 0 | 0 | 83 | 9.times { |i|
9.times { |j|
puts "#{i+1}x#{j+1}=#{(i+1)*(j+1)}"
}
} | File "/tmp/tmpr33r4d94/tmptxg_09vq.py", line 1
9.times { |i|
^
SyntaxError: invalid decimal literal
| |
s962198547 | p00000 | u551654309 | 1472270202 | Python | Python3 | py | Runtime Error | 0 | 0 | 88 | for a in range(1,10):
for b in range(1,10):
print(str(a) + "x" * str(b) + "=" + "a*b" | File "/tmp/tmplkfuczm8/tmpai5ckmgf.py", line 3
print(str(a) + "x" * str(b) + "=" + "a*b"
IndentationError: expected an indented block after 'for' statement on line 2
| |
s151567840 | p00000 | u545973195 | 1475146493 | Python | Python3 | py | Runtime Error | 0 | 0 | 71 | for i in range(1,10):
for j in range(1,10):
print(i+"x"+j+"="+(i*j)) | Traceback (most recent call last):
File "/tmp/tmpkaoy7tu3/tmpqq74hsc2.py", line 3, in <module>
print(i+"x"+j+"="+(i*j))
~^~~~
TypeError: unsupported operand type(s) for +: 'int' and 'str'
| |
s792408017 | p00000 | u505912349 | 1475830156 | Python | Python3 | py | Runtime Error | 0 | 0 | 96 | for i in range(1,10):
for j in range(1,10):
ans = i * j
print('%dx%d=%D'%(i,j,k)) | Traceback (most recent call last):
File "/tmp/tmps_14sdl4/tmphel4956r.py", line 4, in <module>
print('%dx%d=%D'%(i,j,k))
^
NameError: name 'k' is not defined
| |
s166767545 | p00000 | u505912349 | 1475830265 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | for i in range(1,10):
for j in range(1,10):
ans = i * j
print('%dx%d=%d' % (i,j,k)) | Traceback (most recent call last):
File "/tmp/tmp0id9xci6/tmppk87zb3p.py", line 4, in <module>
print('%dx%d=%d' % (i,j,k))
^
NameError: name 'k' is not defined
| |
s886267781 | p00000 | u159356473 | 1476318774 | Python | Python3 | py | Runtime Error | 0 | 0 | 163 | #coding:UTF-8
def QQ():
for i in range(1,10):
for j in range(1,10):
print(str(i)+"x"+str(j)+"="str(i*j))
if __name__=="__main__":
QQ() | File "/tmp/tmpx_j0yh5u/tmplsfmm2qq.py", line 5
print(str(i)+"x"+str(j)+"="str(i*j))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s607528498 | p00000 | u159356473 | 1476318810 | Python | Python3 | py | Runtime Error | 0 | 0 | 143 | #coding:UTF-8
def QQ():
for i in range(1,10):
for j in range(1,10):
print(str(i)+"x"+str(j)+"="str(i*j))
if __name__=="__main__":
QQ() | File "/tmp/tmpqmn494wc/tmphmaeye8h.py", line 5
print(str(i)+"x"+str(j)+"="str(i*j))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s010914141 | p00000 | u149199817 | 1477890768 | Python | Python3 | py | Runtime Error | 0 | 0 | 23 | src/volume_0/0000_QQ.py | File "/tmp/tmp06ua24da/tmpbgpeg19l.py", line 1
src/volume_0/0000_QQ.py
^
SyntaxError: invalid decimal literal
| |
s609461318 | p00000 | u149199817 | 1477907604 | Python | Python3 | py | Runtime Error | 0 | 0 | 270 | # -*- coding: utf-8 -*-
def qq(limit=9):
qq_str += ''
for i in range(limit):
for j in range(limit):
qq_str += str(i) + 'x' + str(j) + '=' + str(i*j) + '\n'
return qq_str
def main():
print(qq())
if __name__ == '__main__':
main() | Traceback (most recent call last):
File "/tmp/tmpgjkuix9p/tmp7qp1pu5_.py", line 14, in <module>
main()
File "/tmp/tmpgjkuix9p/tmp7qp1pu5_.py", line 11, in main
print(qq())
^^^^
File "/tmp/tmpgjkuix9p/tmp7qp1pu5_.py", line 4, in qq
qq_str += ''
^^^^^^
UnboundLocalError: cannot access local variable 'qq_str' where it is not associated with a value
| |
s787109756 | p00000 | u220324665 | 1478002811 | Python | Python | py | Runtime Error | 0 | 0 | 69 | [print"%dx%d=%d"%(i,j,i*j)for i in range(1, 10)for j in range(1, 10)] | File "/tmp/tmp7ew4r0l9/tmpqepch9il.py", line 1
[print"%dx%d=%d"%(i,j,i*j)for i in range(1, 10)for j in range(1, 10)]
^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s035174141 | p00000 | u873302699 | 1478153642 | Python | Python | py | Runtime Error | 0 | 0 | 67 | for i in range(10):
print str(i) + 'x' + str(i)+'='+str(i*i) | File "/tmp/tmp5e2suk17/tmp0pitice7.py", line 1
for i in range(10):
IndentationError: unexpected indent
| |
s218273254 | p00000 | u660912567 | 1478454548 | Python | Python | py | Runtime Error | 0 | 0 | 85 | for i in range(1,10):
for j in range(1,10):
print(i,'X',j,'=',i*j,sep='') | 1X1=1
1X2=2
1X3=3
1X4=4
1X5=5
1X6=6
1X7=7
1X8=8
1X9=9
2X1=2
2X2=4
2X3=6
2X4=8
2X5=10
2X6=12
2X7=14
2X8=16
2X9=18
3X1=3
3X2=6
3X3=9
3X4=12
3X5=15
3X6=18
3X7=21
3X8=24
3X9=27
4X1=4
4X2=8
4X3=12
4X4=16
4X5=20
4X6=24
4X7=28
4X8=32
4X9=36
5X1=5
5X2=10
5X3=15
5X4=20
5X5=25
5X6=30
5X7=35
5X8=40
5X9=45
6X1=6
6X2=12
6X3=18
6X4=24
6X5=30
6X6=36
6X7=42
6X8=48
6X9=54
7X1=7
7X2=14
7X3=21
7X4=28
7X5=35
7X6=42
7X7=49
7X8=56
7X9=63
8X1=8
8X2=16
8X3=24
8X4=32
8X5=40
8X6=48
8X7=56
8X8=64
8X9=72
9X1=9
9X2=18
9X3=27
9X4=36
9X5=45
9X6=54
9X7=63
9X8=72
9X9=81
| |
s904558859 | p00000 | u828399801 | 1479778813 | Python | Python3 | py | Runtime Error | 0 | 0 | 158 | process.stdin.resume();
process.stdin.setEncoding('utf8');
var a = 1;
for(a;a<=9;a++){
for(var i=0;i<9;i++){
console.log(a+"x"+(i+1)+"="+a*(i+1));
}
} | File "/tmp/tmp8x6tcj4n/tmp821qqgf3.py", line 4
var a = 1;
^
SyntaxError: invalid syntax
| |
s523806086 | p00000 | u086566114 | 1480502178 | Python | Python | py | Runtime Error | 0 | 0 | 88 | for i in range(1,10):
for j in range(1,10):
print "".join([i,"x",j,"=",i*j]) | File "/tmp/tmpnl42hsaw/tmplu0cj0sa.py", line 3
print "".join([i,"x",j,"=",i*j])
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s103723461 | p00000 | u206656948 | 1481333916 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | for i in range(1,10):
????????????for j in range(1,10):
????????????????????????print("{0}{1}{2}{3}{4}".format(i,"x",j,"=",i*j)) | File "/tmp/tmpi2875zvc/tmp7twyyonj.py", line 2
????????????for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s976463737 | p00000 | u206656948 | 1481333981 | Python | Python3 | py | Runtime Error | 0 | 0 | 128 | for i in range(1,10):
????????????for j in range(1,10):
????????????????????????print("{0}{1}{2}{3}{4}".format(i,"x",j,"=",i*j)) | File "/tmp/tmpu7lw1t4o/tmp9rx74_3y.py", line 2
????????????for j in range(1,10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s507950445 | p00000 | u494314211 | 1481457854 | Python | Python3 | py | Runtime Error | 0 | 0 | 84 | for i in range(1,10):
for j in range(1,100):
print(str(i)+"x"+str(j)+"="str(i*j)) | File "/tmp/tmp1_8meq6j/tmpufwwl8wm.py", line 3
print(str(i)+"x"+str(j)+"="str(i*j))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s155427918 | p00000 | u493187281 | 1482768849 | Python | Python3 | py | Runtime Error | 0 | 0 | 93 | for i in range(10):
for j in range(10):
if i*j==0:
continue
else:
n=i*j
print(i,"??",j,"=",n) | File "/tmp/tmp6iefyj0b/tmpkrbvawyb.py", line 2
for j in range(10):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s783841799 | p00000 | u745277023 | 1483691717 | Python | Python3 | py | Runtime Error | 0 | 0 | 105 | for x in range(10):
for y in range(x, 9):
print("%dx%d=%d" % x + 1, y + 1, (x + 1) * (y + 1)) | Traceback (most recent call last):
File "/tmp/tmp619m8syh/tmpnokrsc3q.py", line 3, in <module>
print("%dx%d=%d" % x + 1, y + 1, (x + 1) * (y + 1))
~~~~~~~~~~~^~~
TypeError: not enough arguments for format string
| |
s692586078 | p00000 | u917218626 | 1487227842 | Python | Python3 | py | Runtime Error | 0 | 0 | 69 | for i in range(1,10):for i in range(1,10):print("%dx%d=%d"%(i,j,i*j)) | File "/tmp/tmpdeuyaevt/tmpe41pfwuq.py", line 1
for i in range(1,10):for i in range(1,10):print("%dx%d=%d"%(i,j,i*j))
^^^
SyntaxError: invalid syntax
| |
s532527314 | p00000 | u917218626 | 1487227879 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | for i in range(1,10):
for i in range(1,10):
print("%dx%d=%d"%(i,j,i*j)) | Traceback (most recent call last):
File "/tmp/tmp64dp4s9n/tmp_8uoie6o.py", line 3, in <module>
print("%dx%d=%d"%(i,j,i*j))
^
NameError: name 'j' is not defined
| |
s376150919 | p00000 | u080946294 | 1488812968 | Python | Python3 | py | Runtime Error | 0 | 0 | 101 | for i in range(1, 10):
for f in range(1, 0):
g = i * f
print(i + "x" + f "=" + g) | File "/tmp/tmpz7ce8ovu/tmpvns5rrw_.py", line 4
print(i + "x" + f "=" + g)
^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s256740609 | p00000 | u080946294 | 1488813363 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | for i in range(1, 10):
for f in range(1, 0):
g = i * f
print(str(i) + "x" + str(f) "=" + str(g)) | File "/tmp/tmp6859wb1m/tmp87vxp2wo.py", line 4
print(str(i) + "x" + str(f) "=" + str(g))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s415639158 | p00000 | u080946294 | 1488813598 | Python | Python3 | py | Runtime Error | 0 | 0 | 116 | for i in range(1, 10):
for f in range(1, 0):
g = i * f
print(str(i) + "x" + str(f) "=" + str(g)) | File "/tmp/tmp174fl4f9/tmpucugcf41.py", line 4
print(str(i) + "x" + str(f) "=" + str(g))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s935567487 | p00000 | u080946294 | 1488813653 | Python | Python3 | py | Runtime Error | 0 | 0 | 117 | for i in range(1, 10):
for f in range(1, 10):
g = i * f
print(str(i) + "x" + str(f) "=" + str(g)) | File "/tmp/tmp1896kg34/tmpivmfph8p.py", line 4
print(str(i) + "x" + str(f) "=" + str(g))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: invalid syntax. Perhaps you forgot a comma?
| |
s121256735 | p00000 | u623894175 | 1489315129 | Python | Python3 | py | Runtime Error | 0 | 0 | 76 | for i in list(range(1,10)):
???for ii in list(range(1,10)):
??????print i*ii | File "/tmp/tmp26qd1jki/tmpqj03zcmg.py", line 2
???for ii in list(range(1,10)):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s748339389 | p00000 | u623894175 | 1489316143 | Python | Python3 | py | Runtime Error | 0 | 0 | 98 | for i in list(range(1,10))
for ii in list(range(1,10))
print('%d x %d = %d' % (i, ii, i*ii)) | File "/tmp/tmp508941jg/tmpmx8br9lm.py", line 1
for i in list(range(1,10))
^
SyntaxError: expected ':'
| |
s491984362 | p00000 | u623894175 | 1489316275 | Python | Python3 | py | Runtime Error | 0 | 0 | 108 | for i in list(range(1,10)):
???for ii in list(range(1,10)):
??????print('%d x %d = %d * %d' % (i, ii, i*ii)) | File "/tmp/tmpu48weapz/tmpi37u8yj6.py", line 2
???for ii in list(range(1,10)):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s791945734 | p00000 | u623894175 | 1489316383 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | for i in list(range(1,10)):
??????for ii in list(range(1,10)):
????????????print('%d x %d = %d' % (i, ii, i*ii)) | File "/tmp/tmpzn7xbvag/tmpb6_75img.py", line 2
??????for ii in list(range(1,10)):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s501192581 | p00000 | u623894175 | 1489316417 | Python | Python3 | py | Runtime Error | 0 | 0 | 112 | for i in list(range(1,10)):
??????for ii in list(range(1,10)):
????????????print("%d x %d = %d" % (i, ii, i*ii)) | File "/tmp/tmp35do9ddq/tmpne4gdq29.py", line 2
??????for ii in list(range(1,10)):
^
IndentationError: expected an indented block after 'for' statement on line 1
| |
s089907036 | p00000 | u318910474 | 1491520584 | Python | Python3 | py | Runtime Error | 0 | 0 | 90 | for i in range(1, 10):
for j in range(1, 10):
print(i + "x" + j + "=" + i * j) | Traceback (most recent call last):
File "/tmp/tmptf1dqq0r/tmpy5zoffyj.py", line 3, in <module>
print(i + "x" + j + "=" + i * j)
~~^~~~~
TypeError: unsupported operand type(s) for +: 'int' and 'str'
| |
s729728844 | p00000 | u024715419 | 1492154077 | Python | Python3 | py | Runtime Error | 0 | 0 | 78 | for i in range(1:10):
for j in range(1,10):
print(i,"x",j,"=",i*j) | File "/tmp/tmp_gsrim7a/tmp03tgy5u_.py", line 1
for i in range(1:10):
^
SyntaxError: invalid syntax
| |
s702071798 | p00000 | u621074293 | 1493977968 | Python | Python3 | py | Runtime Error | 0 | 0 | 100 | for i in range(1,10):
for j in range(1,10):
print str(i) + 'x' + str(j) + '=' + str(i*j) | File "/tmp/tmp_pkqftmt/tmpdn0xipeu.py", line 3
print str(i) + 'x' + str(j) + '=' + str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s195514433 | p00000 | u089821418 | 1494824313 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | i = 1
x = 1
for i in range[10]:
for x in range[10]:
print int(x)*int(i) | File "/tmp/tmp1gls91qd/tmpg95b_s6g.py", line 5
print int(x)*int(i)
^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s196453187 | p00000 | u711703834 | 1495181554 | Python | Python3 | py | Runtime Error | 0 | 0 | 62 | for n in range(1,10)
for k in range(1,10)
print n x k | File "/tmp/tmpakbibewo/tmpg22fy24g.py", line 1
for n in range(1,10)
^
SyntaxError: expected ':'
| |
s200840690 | p00000 | u711703834 | 1495182757 | Python | Python3 | py | Runtime Error | 0 | 0 | 104 | for n in range(1, 10):
for k in range(1, 10):
print str(n) + "x" + str(k) + "=" + str(n * k) | File "/tmp/tmpjjpbl86y/tmpqbmcu11b.py", line 3
print str(n) + "x" + str(k) + "=" + str(n * k)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s446197961 | p00000 | u714141025 | 1495602853 | Python | Python3 | py | Runtime Error | 0 | 0 | 74 | i=1
while i < 10:
j=1
while j < 10
print (i,"x",j,"=",i*j) | File "/tmp/tmpuxp8nl55/tmp5d9rld43.py", line 4
while j < 10
^
SyntaxError: expected ':'
| |
s126150687 | p00000 | u558132181 | 1496395374 | Python | Python | py | Runtime Error | 0 | 0 | 82 | for i in range(1,10):
for j in range(1,10):
print(i,'??',j, '=' , i*j) | 1 ?? 1 = 1
1 ?? 2 = 2
1 ?? 3 = 3
1 ?? 4 = 4
1 ?? 5 = 5
1 ?? 6 = 6
1 ?? 7 = 7
1 ?? 8 = 8
1 ?? 9 = 9
2 ?? 1 = 2
2 ?? 2 = 4
2 ?? 3 = 6
2 ?? 4 = 8
2 ?? 5 = 10
2 ?? 6 = 12
2 ?? 7 = 14
2 ?? 8 = 16
2 ?? 9 = 18
3 ?? 1 = 3
3 ?? 2 = 6
3 ?? 3 = 9
3 ?? 4 = 12
3 ?? 5 = 15
3 ?? 6 = 18
3 ?? 7 = 21
3 ?? 8 = 24
3 ?? 9 = 27
4 ?? 1 = 4
4 ?? 2 = 8
4 ?? 3 = 12
4 ?? 4 = 16
4 ?? 5 = 20
4 ?? 6 = 24
4 ?? 7 = 28
4 ?? 8 = 32
4 ?? 9 = 36
5 ?? 1 = 5
5 ?? 2 = 10
5 ?? 3 = 15
5 ?? 4 = 20
5 ?? 5 = 25
5 ?? 6 = 30
5 ?? 7 = 35
5 ?? 8 = 40
5 ?? 9 = 45
6 ?? 1 = 6
6 ?? 2 = 12
6 ?? 3 = 18
6 ?? 4 = 24
6 ?? 5 = 30
6 ?? 6 = 36
6 ?? 7 = 42
6 ?? 8 = 48
6 ?? 9 = 54
7 ?? 1 = 7
7 ?? 2 = 14
7 ?? 3 = 21
7 ?? 4 = 28
7 ?? 5 = 35
7 ?? 6 = 42
7 ?? 7 = 49
7 ?? 8 = 56
7 ?? 9 = 63
8 ?? 1 = 8
8 ?? 2 = 16
8 ?? 3 = 24
8 ?? 4 = 32
8 ?? 5 = 40
8 ?? 6 = 48
8 ?? 7 = 56
8 ?? 8 = 64
8 ?? 9 = 72
9 ?? 1 = 9
9 ?? 2 = 18
9 ?? 3 = 27
9 ?? 4 = 36
9 ?? 5 = 45
9 ?? 6 = 54
9 ?? 7 = 63
9 ?? 8 = 72
9 ?? 9 = 81
| |
s849690538 | p00000 | u962381052 | 1496712821 | Python | Python3 | py | Runtime Error | 0 | 0 | 94 | for i in range(1, 10):
for j in range(1, 10):
print('{}x{}={}').format(i, j, i*j)) | File "/tmp/tmp13st_97e/tmpj1p1jyv0.py", line 3
print('{}x{}={}').format(i, j, i*j))
^
SyntaxError: unmatched ')'
| |
s045882528 | p00000 | u240754089 | 1497793135 | Python | Python | py | Runtime Error | 0 | 0 | 105 | for i in range(1, 10):
for j in range(1, 10):
print str(i) + "??" + str(j) + "=" + str(i * j) | File "/tmp/tmpoaj227k4/tmp_ikpaaoa.py", line 3
print str(i) + "??" + str(j) + "=" + str(i * j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s607956534 | p00000 | u765341770 | 1498824020 | Python | Python3 | py | Runtime Error | 0 | 0 | 63 | for i in range(1:10):
print(str(i)+"x"+str(i)+"="+str(i*i)) | File "/tmp/tmp4980ytt7/tmpvl487ezi.py", line 1
for i in range(1:10):
^
SyntaxError: invalid syntax
| |
s001923321 | p00000 | u551456712 | 1502846443 | Python | Python3 | py | Runtime Error | 0 | 0 | 118 | a = [x for x in range(9)]
for i in a:
for j in a:
print('{}x{}={}'.format(i + 1, j + 1, (i + 1) * (j + 1)) | File "/tmp/tmpbeubyw63/tmp7iis32ex.py", line 4
print('{}x{}={}'.format(i + 1, j + 1, (i + 1) * (j + 1))
^
SyntaxError: '(' was never closed
| |
s931248767 | p00000 | u551456712 | 1502849473 | Python | Python3 | py | Runtime Error | 0 | 0 | 83 | [print('{}x{}={}').format(i, j, i * j) for j in range(1, 10) for i in range(1, 10)] | Traceback (most recent call last):
File "/tmp/tmp9gix5miz/tmp0vbfsidw.py", line 1, in <module>
[print('{}x{}={}').format(i, j, i * j) for j in range(1, 10) for i in range(1, 10)]
File "/tmp/tmp9gix5miz/tmp0vbfsidw.py", line 1, in <listcomp>
[print('{}x{}={}').format(i, j, i * j) for j in range(1, 10) for i in range(1, 10)]
^^^^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'NoneType' object has no attribute 'format'
| {}x{}={}
|
s008878905 | p00000 | u471400255 | 1502859280 | Python | Python3 | py | Runtime Error | 0 | 0 | 66 | for i in range(1:10):
for j in range(1:10):
print(i*j) | File "/tmp/tmp328ctybq/tmpz6iatn72.py", line 1
for i in range(1:10):
^
SyntaxError: invalid syntax
| |
s154079437 | p00000 | u744121389 | 1502943730 | Python | Python3 | py | Runtime Error | 0 | 0 | 48 |
for x in range(1,9)
print(x ???????? x = x**2) | File "/tmp/tmpoovvwbcq/tmpjr39hf9o.py", line 2
for x in range(1,9)
^
SyntaxError: expected ':'
| |
s076635847 | p00000 | u633333374 | 1503276865 | Python | Python | py | Runtime Error | 0 | 0 | 93 | for i in range(1,10):
for j in range(1,10):
print str(i)+"??"+str(j)+"="+str(i*j) | File "/tmp/tmpycq91hlm/tmp5r6a318p.py", line 3
print str(i)+"??"+str(j)+"="+str(i*j)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
SyntaxError: Missing parentheses in call to 'print'. Did you mean print(...)?
| |
s560205613 | p00000 | u619547950 | 1509369076 | Python | Python | py | Runtime Error | 0 | 0 | 137 | object Main {
def main(args: Array[String]): Unit = {
for (i <- 1 to 9; j <- 1 to 9)
println(i + "x" + j + "=" + i * j)
}
} | File "/tmp/tmpqa_8of1p/tmp8c1hma05.py", line 1
object Main {
^^^^
SyntaxError: invalid syntax
|
End of preview. Expand
in Data Studio
README.md exists but content is empty.
- Downloads last month
- 8