Coder Social home page Coder Social logo

blu3r4y / python-for-java-developers Goto Github PK

View Code? Open in Web Editor NEW
20.0 2.0 1.0 2.26 MB

If you are a Java developer and want to get a quick glance at Python, this course is for you

Home Page: https://blu3r4y.github.io/python-for-java-developers/excerpt.html

License: Other

Jupyter Notebook 4.46% Python 15.93% Java 7.68% CSS 2.52% Shell 0.90% JavaScript 0.83% TypeScript 0.85% Markdown 62.36% HTML 4.48%
java python python-courses python-tutorial

python-for-java-developers's Introduction

Python Crash Course for Java Developers

Binder Excerpt PDF Slides License

If you are a Java developer and want to get a quick glance at Python, this course is for you.

Course excerpt Course slides or PDF view
Excerpt Screenshot Slides Screenshot

Interactive Course Guide

You can follow along by just viewing the slides or the excerpt.
If you would like to have PDF slides, press the PDF button and head to your print dialog.

If you want to play around with the code snippets in a Jupyter notebook, do one of the following.

Option A: Open a JupyerLab environment with Binder (recommended)

Click the Binder button above to launch a pre-configured JupyterLab instance in your browser.

Binder Screenshot

Option B: Install and run Python on your computer (local setup)

Install Python locally, check-out this repository, install the dependencies and start a JupyterLab instance.

python -m pip install -r requirements.txt
python -m jupyter lab --notebook-dir .

If you have VS Code, you can also open notebooks directly in there.

python-for-java-developers's People

Contributors

blu3r4y avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

sacmad21

python-for-java-developers's Issues

Think about removing generics and collections to be more beginner-friendly

This specific examples might show some confusion:

// ./java/M08_PassByObjectReference.java#L4-L20

static void replace(List<Integer> numbers) {
    numbers = Arrays.asList(42, 43, 44);
}
 
static void append(List<Integer> numbers) {
    numbers.add(42);
}
 
public static void main(String[] args) {
    List<Integer> oneTwoThree = new LinkedList<>(Arrays.asList(1, 2, 3));
 
    replace(oneTwoThree);
    System.out.println(Arrays.toString(oneTwoThree.toArray()));  // [1, 2, 3]
 
    append(oneTwoThree);
    System.out.println(Arrays.toString(oneTwoThree.toArray()));  // [1, 2, 3, 42]
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.