Search results

  1. A

    sequence unpacking in python

    What is meant by sequence unpacking in python??
  2. A

    need help in python

    When I run the code: >>>i=5 >>>def f(arg=i): print(arg) >>>i=6 >>>f() It print 5.Why is this so??
  3. A

    convert a C program to .hex

    I am trying to make a software which could convert C programs to hex files but am having no idea where should I start from. Please help..
  4. A

    Problem with Python Shell

    Now I am having problem with the else statement >>> x=21 >>> if x%2==0: print (x ,"is even") else: SyntaxError: invalid syntax >>>
  5. A

    Problem with Python Shell

    thanks....
  6. A

    Problem with Python Shell

    Whenever i use the print statement it returns a syntax error.What should I do? Python 3.2 (r32:88445, Feb 20 2011, 21:30:00) [MSC v.1500 64 bit (AMD64)] on win32 Type "copyright", "credits" or "license()" for more information. >>> print 52*4 SyntaxError: invalid syntax >>> print 52...
Top Bottom