python-training
Python training for business analysts and traders. This is designed to be an introduction to numerical computing and data visualization in Python. It is not designed to be a complete course in Computer Science or programming, but rather a motivational demonstration of how relatively complex topics can be accessible even to those without formal progamming backgrounds.
Creator: J.P. Morgan
Stars: ⭐️ 2.9k
Forked by: 709
GitHub repo: https://github.com/jpmorganchase/python-training
#python #training
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
  
  Python training for business analysts and traders. This is designed to be an introduction to numerical computing and data visualization in Python. It is not designed to be a complete course in Computer Science or programming, but rather a motivational demonstration of how relatively complex topics can be accessible even to those without formal progamming backgrounds.
Creator: J.P. Morgan
Stars: ⭐️ 2.9k
Forked by: 709
GitHub repo: https://github.com/jpmorganchase/python-training
#python #training
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
GitHub
  
  GitHub - jpmorganchase/python-training: Python training for business analysts and traders
  Python training for business analysts and traders. Contribute to jpmorganchase/python-training development by creating an account on GitHub.
  What will be the output of the following Python code?
'{0:f}, {1:2f}, {2:05.2f}'.format(1.23456, 1.23456, 1.23456)
  '{0:f}, {1:2f}, {2:05.2f}'.format(1.23456, 1.23456, 1.23456)
Anonymous Quiz
    36%
    Error
      
    32%
    ‘1.234560, 1.22345, 1.23’
      
    14%
    No output
      
    19%
    ‘1.234560, 1.234560, 01.23’
      
    Python List Methods clearly Explained!🚀
Here are brief descriptions for each, followed by Illustrations below!
• append( ):
Adds an element to the end of the list.
• pop( ):
Removes and returns an element at a given index. If no index is specified, it removes and returns the last element.
• insert( ):
Inserts an element at a specified index, pushing other elements to the right.
• remove( ):
Removes the first occurrence of a specified value from the list.
• extend( ):
Appends all the elements from another list (or any iterable) to the end of the list.
• reverse( ):
Reverses the elements in the list in-place.
• index( ):
Returns the index of the first occurrence of a specified value in the list.
• count( ):
Returns the number of occurrences of a specified value in the list.
• sort( ):
Sorts the elements in the list in-place. Optional arguments can specify ascending or descending order.
Here are brief descriptions for each, followed by Illustrations below!
• append( ):
Adds an element to the end of the list.
• pop( ):
Removes and returns an element at a given index. If no index is specified, it removes and returns the last element.
• insert( ):
Inserts an element at a specified index, pushing other elements to the right.
• remove( ):
Removes the first occurrence of a specified value from the list.
• extend( ):
Appends all the elements from another list (or any iterable) to the end of the list.
• reverse( ):
Reverses the elements in the list in-place.
• index( ):
Returns the index of the first occurrence of a specified value in the list.
• count( ):
Returns the number of occurrences of a specified value in the list.
• sort( ):
Sorts the elements in the list in-place. Optional arguments can specify ascending or descending order.
👍4
  What will be the output of the following Python code?
'%.2f%s' % (1.2345, 99)
  '%.2f%s' % (1.2345, 99)
Anonymous Quiz
    19%
    ‘1.2345’, ‘99’
      
    20%
    ‘1.2399’
      
    25%
    '1.234599’
      
    36%
    1.23, 99
      
    What will be the output of the two codes?
  Anonymous Quiz
    26%
    ‘4.56’, ‘4.56,’
      
    45%
    ‘4.56’, ‘[4.56]’
      
    20%
    4.56, [4.56,]
      
    10%
    4.56, [4.56,]
      
    lpython
LPython is a Python compiler. It is in heavy development, currently in alpha stage. LPython works on Windows, macOS and Linux. Some of the goals of LPython include:
The best possible performance for numerical, array-oriented code
Run on all platforms
Compile a subset of Python yet be fully compatible with Python
Explore designs so that LPython eventually can compile all Python code
Fast compilation
Excellent user-friendly diagnostic messages: error, warnings, hints, notes, etc.
Ahead-of-Time compilation to binaries, plus interactive usage (Jupyter notebook)
Transforming Python code to C++, Fortran and other languages
Creator: lcompilers
Stars: ⭐️ 841
Forked by: 98
GitHub repo: https://github.com/lcompilers/lpython
#ipython
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
  
  LPython is a Python compiler. It is in heavy development, currently in alpha stage. LPython works on Windows, macOS and Linux. Some of the goals of LPython include:
The best possible performance for numerical, array-oriented code
Run on all platforms
Compile a subset of Python yet be fully compatible with Python
Explore designs so that LPython eventually can compile all Python code
Fast compilation
Excellent user-friendly diagnostic messages: error, warnings, hints, notes, etc.
Ahead-of-Time compilation to binaries, plus interactive usage (Jupyter notebook)
Transforming Python code to C++, Fortran and other languages
Creator: lcompilers
Stars: ⭐️ 841
Forked by: 98
GitHub repo: https://github.com/lcompilers/lpython
#ipython
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
GitHub
  
  GitHub - lcompilers/lpython: Python compiler
  Python compiler. Contribute to lcompilers/lpython development by creating an account on GitHub.
  In this Python code, which function is the decorator?
  Anonymous Quiz
    24%
    p()
      
    42%
    mk()
      
    24%
    mk1()
      
    10%
    mk2()
      
    The ______ symbol along with the name of the decorator function can be placed above the definition of the function to be decorated works as an alternate way for decorating a function.
  Anonymous Quiz
    28%
    #
      
    10%
    &
      
    45%
    @
      
    17%
    $
      
    Free Python Books 
A list of Python books in English that are free to read online or download.
Creator: Paolo Amoroso
Stars ⭐️: 3.8k
Forked By: 503
https://github.com/pamoroso/free-python-books
#python #pythonbooks #books
➖➖➖➖➖➖➖➖➖➖
Join @bigdataspecialist for more
  
  A list of Python books in English that are free to read online or download.
Creator: Paolo Amoroso
Stars ⭐️: 3.8k
Forked By: 503
https://github.com/pamoroso/free-python-books
#python #pythonbooks #books
➖➖➖➖➖➖➖➖➖➖
Join @bigdataspecialist for more
GitHub
  
  GitHub - pamoroso/free-python-books: Python books free to read online or download
  Python books free to read online or download. Contribute to pamoroso/free-python-books development by creating an account on GitHub.
👍2
  openai-python
The OpenAI Python library provides convenient access to the OpenAI API from applications written in the Python language. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses which makes it compatible with a wide range of versions of the OpenAI API.
Creator: OpenAI
Stars: ⭐️ 13.2k
Forked by: 1.9k
https://github.com/openai/openai-python
#python
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
  
  The OpenAI Python library provides convenient access to the OpenAI API from applications written in the Python language. It includes a pre-defined set of classes for API resources that initialize themselves dynamically from API responses which makes it compatible with a wide range of versions of the OpenAI API.
Creator: OpenAI
Stars: ⭐️ 13.2k
Forked by: 1.9k
https://github.com/openai/openai-python
#python
➖➖➖➖➖➖➖➖➖➖➖➖➖➖
Join @github_repositories_bds for more cool repositories.
*This channel belongs to @bigdataspecialist group
GitHub
  
  GitHub - openai/openai-python: The official Python library for the OpenAI API
  The official Python library for the OpenAI API. Contribute to openai/openai-python development by creating an account on GitHub.
👍2