Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Reference_description_with_linked_URLs_______________________Notes______________________________________________________________


https://www.python.org/Python.org
https://docs.python.org/3/Python 3.x docs
https://wiki.python.org/moin/Python wiki


https://wiki.python.org/moin/MovingToPythonFromOtherLanguagesMoving to Python from other languages


Python for Java Developers - quick start

https://lobster1234.github.io/2017/05/25/python-java-primer/

https://drive.google.com/open?id=1bSt5RuW8VAGmpE9vYa5x-d02i7TnEyrD

python-4-java-io-lobster1234.github.io-Python Primer for Java Developers.pdf

Python for Java Developers - includes file , http io

https://realpython.com/oop-in-python-vs-java/

python-4-java-realpython.com-Object-Oriented Programming in Python vs Java.pdf

Python for Java Developers - OO concepts - blog - realpython
http://anh.cs.luc.edu/170/mynotes/userdefinedjavaobjects.htmlPython to Java exercises - convert Python code to Java examples


Analytics with Python or R


https://www.datacamp.com/community/tutorials/r-or-python-for-data-analysis?fbclid=
IwAR3AEPrIfQrpoHPIeymv7zAPhEnrpR1RL0zZ8IS7
9AlaHgyzUPgouZmbBX4

python-vs-R-for-analytics-use-cases-2019.pdf

Python or R for analytics ?  comparison from DataCamp


Billable courses on Python
https://www.udemy.com/course/python-for-data-science-and-machine-learning-bootcamp/ML and Python basics - RECOMMENDED first course


https://www.udemy.com/course/math-with-python/learn Python and Math
https://www.udemy.com/course/pytorch-for-deep-learning-with-python-bootcamp/Pytorch intermediate


https://morioh.com/p/n0aRySfEzqFf?f=5c21fb01c16e2556b555ab32&fbclid=IwAR3_QQT4
yej5ns4LXwQQVrT4kH7Gkp44Gx7QvWP4ubxRT-LsvIUXmaHl4Nk
Python and MySQL Tutorial







Key Concepts


Python for Java Developers Quickstart

...

Style Guide for Python Code




Python and MySQL Tutorial

https://morioh.com/p/n0aRySfEzqFf?f=5c21fb01c16e2556b555ab32&fbclid=IwAR3_QQT4yej5ns4LXwQQVrT4kH7Gkp44Gx7QvWP4ubxRT-LsvIUXmaHl4Nk



sample code 

https://github.com/hnasr/python_playground/tree/master/mysqldemopython

Code Block
languagepy
titlePython and MySQL
collapsetrue
import mysql.connector

#connecting to a database
con = mysql.connector.connect(
    host = "husseinmac",
    user = "root",
    password = "password",
    database = "husseindb",
    port = 3306
)

print("Hey, I think I'm connected")

#cursor 
cur = con.cursor()
#insert a new row

for i in range(100):
    cur.execute("INSERT INTO employees (ID, NAME) VALUES (%s, %s)", (i+10, f'Mark{i}' ))

#execute the query
cur.execute("SELECT ID,NAME FROM employees")

#cur.execute("SELECT ID,NAME FROM employees where NAME = %s", ("Yara",))

rows = cur.fetchall()

for r in rows:
    print(f" ID = {r[0]} NAME = {r[1]}")

#commit the transaction
con.commit()

#close the cursor
cur.close()
#close the connection
con.close()



Potential Value Opportunities

...