GithubHelp home page GithubHelp logo

sbrylka / learning-python Goto Github PK

View Code? Open in Web Editor NEW
0.0 2.0 0.0 55 KB

Learning Python project based on "Python crash course: A Hands-On, Project-Based Introduction to Programming" book written by Eric Matthes

Python 100.00%
python

learning-python's Introduction

Python

This project's main goal is to learn Python language. It's based on "Python crash course: A Hands-On, Project-Based Introduction to Programming" book written by Eric Matthes.

Table of contents

General info

This project will show how to:

  • create a different types of variables
  • make a list
  • sort your list
  • make an "if"
  • input your data
  • use a "while" loop
  • create a function
  • dictionaries
  • classes

Screenshots

TBA

Technologies

  • Python 3.8.2

Code Examples

available_toppings = ['pieczarki', 'oliwki', 'boczek', 'pepperoni',
					'ananas', 'podwójny ser']

requested_toppings = ['pieczarki', 'frytki', 'podwójny ser']

for requested_topping in requested_toppings:
	if requested_topping in available_toppings:
		print("Dodaję " + requested_topping + ".")
	else:
		print("Przepraszamy, ale obecnie nie mamy dodatku " +
			requested_topping + ".")

print("\nTwoja pizza jest już gotowa")

To do list

  • sort your list
  • input your data
  • use a "while" loop
  • create a function
  • dictionaries
  • classes

Status

Project is: in progress

Inspiration

The biggest inspiration for starting this project were my friend Yarek.

Contact

Created by @sbrylka - feel free to contact me!

learning-python's People

Contributors

sbrylka avatar

Watchers

 avatar  avatar

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.