73 Python témájú ötlet | programozás, kódolás, webfejlesztés
Skip to content
When autocomplete results are available use up and down arrows to review and enter to select. Touch device users, explore by touch or with swipe gestures.

Python

73 Pins
·
9mo
Krisztina PT
By
Krisztina PT
Related searches
We think you’ll love these

Related Interests

Basic Computer Programming
Computer Programming
Learn Computer Coding
Data Science Learning
Computer Coding
Python
Quick reference for Python:
  - if / elif / else
  - comparison operators
  - logical operators

More about this Pin

Related interests

Python Cheat Sheet
Computer Science Programming
Coding Lessons
Programming Humor
Basic Computer Programming
Positive Numbers
Data Science Learning
Learn Computer Coding
Programming Tutorial
Quick reference for Python: - if / elif / else - comparison operators - logical operators
four different types of web pages with the text, top 4 types and below them

More about this Pin

Related interests

Sql Joins Cheat Sheet
Utplsql Cheat Sheet
Sql Joins Explained Visually
Linked List Cheat Sheet Java
Sql Join Types Explained
Sql Join Syntax Guide
How To Visualize Sql Joins
Postgresql Configuration Cheat Sheet
Best Practices For Sql Joins
Exploring three more elegant SQL Joins.
a paper with some writing on it

More about this Pin

Related interests

Tutorial On Functions In Python
Python Notes Aesthetic
Python Notes For Beginners
Advanced Itertools Functions In Python
How To Use List Methods In Python
How To Import Modules In Python
Python Notes
Python Sql Self-study Guide
Python 3.x Programming Tips
the calendar in python code is displayed with an arrow pointing to it's date

More about this Pin

Related interests

Basic Python Code
Python Codes For Beginners
Python Beginner
Python Tutorials
Python Coding Tips
Programming Tutorial On Python
Learning Python For Beginners
Python Programming Tutorial Page
Learn Python Programming
Perfect for beginners looking to enhance their Python skills with a practical project!
Python Data Types

More about this Pin

Related interests

Python Data Types Chart
Python Data Types Guide
Python Data Types Hierarchy
Python Data Model
Python Data Types Tutorial
Python List Data Type
Basic Data Types In Python
Python Data Types Explained
Python Virtualenv Guide
Variables can hold values, and every value has a data type. Python is a dynamically typed language; hence we do not need to define the type of the variable while declaring it. The interpreter implicitly binds the value with its type. Enroll in India’s best online Python course with a certificate and guaranteed job assistance.
a green screen with some words on it

More about this Pin

Related interests

Beginner Python Programming Guide
Learn Python Loops
Python Coding Basics
Python While Loop Tutorial
While Loop Examples
How To Learn Loops In Python
How To Write Python Loops
Python Basics For Beginners
Here in this post, you will learn about Python loops. 1. Python has two primitive loop commands: while loops for loops 2. With the while loop we can execute a set of statements as long as a condition is true. 3. With the break statement we can stop the loop even if the while condition is true. 4. With the continue statement we can stop the current iteration, and continue with the next. 5. With the else statement we can run a block of code once when the condition no longer is true.
an image of a computer screen with some text on it

More about this Pin

Related interests

Beginner Python Programming Tips
How To Start Learning Python
Python Basic Syntax Guide
Python Syntax Tutorial
Python Language Basics
How To Learn Python Syntax
Python Syntax For Beginners
Python is a beginner-friendly language. It has a simple and easy-to-learn syntax compared to C++ and Java. Here in this post, you will learn about Python basic syntax. Python comments begin with a # or you can also enclosed a multiline comment with triple-quotes '''. Python supports the single quote and the double quote for string literals. If you leave a line with just whitespace, the interpreter will ignore it.
an image of a computer screen with the words python for loop

More about this Pin

Related interests

Python Code Examples For Loops
Python Loops And Functions
How To Use For Loop In Python
Python Loop Efficiency
Python For Loop Explanation
Python Loop With Index
A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). With the for loop we can execute a set of statements, once for each item in a list, tuple, set etc. Similarly to while loop, a for loop can also use the key words: break, continue, else. To loop through a set of code a specified number of times, we can use the range() function.
an image of a computer screen with the words python for loop written in green and white

More about this Pin

Related interests

Python Loops And Functions Examples
Python Programming Basics
Python Nested For Loop Code
A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). With the for loop we can execute a set of statements, once for each item in a list, tuple, set etc. Similarly to while loop, a for loop can also use the key words: break, continue, else. To loop through a set of code a specified number of times, we can use the range() function.
a red and white poster with the words data structure & algort times on it

More about this Pin

Related interests

How To Understand Recursion In Python
Programming Tips For Recursion
Python Recursion Explanation Infographic
Python Code Redirection Tutorial
Learn Python Recursion
How To Understand Recursion
Recursion Tutorial For Beginners
an info sheet with some type of information on it, including the numbers and symbols for each

More about this Pin

Related interests

How To Create An Array In Python
How To Make An Array In Python
How To Sort Arrays In Python
How To Perform Array Operations In Python
Beginner Guide To Arrays
Python Programming Advantages
Python Array Operations Code
Scientific Computing With Python Tips
a computer screen with some type of text in the bottom right corner and an image of a dog on it

More about this Pin

Related interests

Learn Basic Python Functions
Python Basic Codes
Learn Python Functions
Python Basics
Python Function Name Determination
Python Dir Function Example
Here in this post, you will learn about Python functions. 1. In Python a function is defined using the def keyword. 2. To call a function, use the function name followed by parenthesis.
an image of a cat with the words python lists below it

More about this Pin

Related interests

Python Coding Essentials
How To Learn Python Basics
Basic Python
Python Programming Mistakes Infographic
an info sheet describing how to use the webpage for different types of articles and text

More about this Pin

Related interests

Learn Python Dictionary Basics
Python Programming Language Basics
Python Dictionary Keys And Values
Allen Key Size Chart Pdf
1. Dictionaries are used to store data values in key:value pairs. 2. Dictionaries are written with curly brackets, and have keys and values. 3. Dictionary items are ordered, changeable, and does not allow duplicates.
a computer screen with the words python lists on it and an image of a cat

More about this Pin

Related interests

Beginner Python Coding Guide
How To Create Python Lists
Python List Basics Tutorial
Python List Data Structure
Python Programming Learning Tips
Basic Python Commands
Here in this post, you will learn about Python collections. 1. Collections in python are basically container data types, namely lists, sets, tuples, dictionary. 2. Lists are used to store multiple items in a single variable. 3. Lists are created using square brackets. 4. List items are ordered, changeable, and allow duplicate values.