Category: Programming

  • Ten multiplication table using python

    Ten multiplication table using python

    Here is the simple loop for creating ten multiplication table using the python programming language.

    #10 X 10 multiplication table
    for i in range(1,11):
        print('{:<3}|'.format(i),end="")
        for  j in range(1,11):
            print('{:>4}'.format(i * j),end="")
        if i == 1:
            print('\n{:#^44}'.format(""),end="")
        print("")

     

     

  • Pyhton Operator Precedence list

    Pyhton Operator Precedence list

    The following table lists all of Python’s operators, from highest precedence to lowest.

     

  • Online Resources for Learn Python

    Online Resources for Learn Python

    Here is the list of some websites that freely provide some learning resources for python programming language.
    1.Programiz
    2. W3Schools

  • Get Awesome Github Student Developer Pack worth $5000 Plus

    Get Awesome Github Student Developer Pack worth $5000 Plus

    If you are a student and you have an email id from Daffodil International University you can Easly get a Github Student Developer Pack which is an awesome developer pack containing lots of tools and services. Other Students can also get a Github Student Developer Pack but here I’m just talking about Daffodil International University student because of DIU Email Can be recognized by Github.  If your University provides the Email address to you use that.

    First of all, you need a Github Account and Add your Varsity email address to your Github account.

    https://education.github.com/pack

    Go to Your Github Account Click Settings => then Emails.

    Then need to verify your Varsity Email just click on Varify then Github sends a Verification mail to your email.

    Varify your email.

    Now Your are Ready to Apply for Github Student Developer Pack application.

    Got to the Site: https://education.github.com/pack#offers

    What you Get?

    For More Information.

    See. Github Help

  • Important Tools For Programming (Online)

    Important Tools For Programming (Online)

    VISUALIZE CODE AND GET LIVE HELP

    Learn Python, Java, C, C++, JavaScript, and Ruby

    http://www.pythontutor.com/

     

    Get your ideas out there.

    Stop wasting time setting up a development environment. Repl.it gives you an instant IDE to learn, build, collaborate, and host all in one place.

    https://repl.it/

  • Helpful Sites for Learn Programming

    Helpful Sites for Learn Programming

     

    https://www.sololearn.com/

     

    https://coderbyte.com/
    https://www.codechef.com/
    https://www.hackerrank.com/
    https://leetcode.com/
    https://codesignal.com/