SYNTAX ERROR
$ python Emailbomb.py File "Emailbomb.py",line 12 print ' ' ^ SyntaxError: Missing parathesis in call to 'print' . Did you mean print('
')?
$
This is easy to fix, just complete the code ! I mean, you need to add ( ) to all the "print" on the Emailbomb.py and that's it !
$ python Emailbomb.py File "Emailbomb.py",line 12 print ' ' ^ SyntaxError: Missing parathesis in call to 'print' . Did you mean print('
')?$
something like this !
print (' ') print (' ') print (' ################################################# ') print (' # # ') print (' # Email Bomb # ') print (' # # ') print (' # create By HA-MRX # ') print (' # # ') print (' # https://www.youtube.com/c/HA-MRX # ') print (' # # ') print (' # https://kurdkali.wordpress.com/ # ') print (' # # ') print (' # https://www.facebook.com/muhamad.jabar333 # ') print (' ################################################# ')
print (' ')