ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login
    1. Topics
    2. Tags
    3. python
    Log in to post
    • All categories
    • mlnewsM

      PyPy 2.6 Takes Python Speed to New Heights

      Watching Ignoring Scheduled Pinned Locked Moved News infoworld python pypy cpython
      1
      1 Votes
      1 Posts
      736 Views
      No one has replied
    • mlnewsM

      What is Coming in Fedora 23

      Watching Ignoring Scheduled Pinned Locked Moved News linux fedora fedora 23 python python 3 wayland red hat
      1
      2 Votes
      1 Posts
      1k Views
      No one has replied
    • scottalanmillerS

      Palandrome Checking with Python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion python
      1
      0 Votes
      1 Posts
      881 Views
      No one has replied
    • scottalanmillerS

      Recursive Palandrome Checking in Python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion recursion python
      1
      0 Votes
      1 Posts
      1k Views
      No one has replied
    • scottalanmillerS

      Web Resources for Learning Python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion python
      2
      4 Votes
      2 Posts
      1k Views
      Bill KindleB

      CodeAcademy's tutorial is pretty good. The interaction is great.

    • scottalanmillerS

      Reversing a List in Python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion python 3 python
      2
      0 Votes
      2 Posts
      1k Views
      scottalanmillerS

      And here is a similar one but this time, both lists remain...

      months = ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'] newMonths = [] monthlen = len(months) for i in range((monthlen - 1),-1,-1): month = months[i] newMonths.append(month) print(newMonths)
    • scottalanmillerS

      Easy Guide to Python Recursion

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion python python 3 recursion
      2
      0 Votes
      2 Posts
      1k Views
      scottalanmillerS

      The most common sample of recursion is always doing factorials, of course. So here it is in Python.

      def main(): num = int(input("Please enter a non-negative integer.\n")) fact = factorial(num) print("The factorial of", num, "is", fact) def factorial(num): if num == 0: return 1 else: return num * factorial(num - 1) main()
    • scottalanmillerS

      Adding a Simple Main Function in Python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion python python 3
      2
      0 Votes
      2 Posts
      1k Views
      scottalanmillerS

      I do the same technique when I am working in BASH. It just makes coding cleaner and easier. I find that even for small programs and quick scripts that it is a good habit to get into.

    • scottalanmillerS

      Linked List in Python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion python linked list
      2
      1 Votes
      2 Posts
      1k Views
      scottalanmillerS

      Here is the code for using the above list to make a LinkedList and to insert some test data:

      myList = linkedList() for x in range(1,10): y = Node(x) myList.insert(y) print(myList.size())
    • scottalanmillerS

      Calling Complex System Commands from Python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion python bash shell python 3
      9
      2 Votes
      9 Posts
      3k Views
      tonyshowoffT

      @Alexis Another reason I like single quotes for my strings, less escape confusion

    • scottalanmillerS

      PyCharm for Python Education is Free

      Watching Ignoring Scheduled Pinned Locked Moved News python pycharm
      2
      1 Votes
      2 Posts
      1k Views
      scottalanmillerS

      I should also mention that PyCharm 4 is out now too. So if you are using PyCharm, be sure to update.

    • lanceL

      Microsoft makes older C++ compiler / headers available just for python

      Watching Ignoring Scheduled Pinned Locked Moved Developer Discussion c++ python
      1
      1 Votes
      1 Posts
      874 Views
      No one has replied
    • Reid CooperR

      Top Python IDE Now in a Free Community Edition

      Watching Ignoring Scheduled Pinned Locked Moved News programming python pycharm ide jetbrains
      3
      1 Votes
      3 Posts
      2k Views
      StrongBadS

      JetBrains does make the best IDEs. I hope that they do this for all of their IDEs and not just PyCharm.

    • scottalanmillerS

      Python the New Language of Education

      Watching Ignoring Scheduled Pinned Locked Moved News python education programming
      1
      1 Votes
      1 Posts
      994 Views
      No one has replied
    • 1
    • 2
    • 2 / 2