Python Projects & Resources
57.4K subscribers
778 photos
342 files
330 links
Perfect channel to learn Python Programming 🇮🇳
Download Free Books & Courses to master Python Programming
- Free Courses
- Projects
- Pdfs
- Bootcamps
- Notes

Admin: @Coderfun
Download Telegram
COMMON TERMINOLOGIES IN PYTHON - PART 1

Have you ever gotten into a discussion with a programmer before? Did you find some of the Terminologies mentioned strange or you didn't fully understand them?

In this series, we would be looking at the common Terminologies in python.

It is important to know these Terminologies to be able to professionally/properly explain your codes to people and/or to be able to understand what people say in an instant when these codes are mentioned. Below are a few:

IDLE (Integrated Development and Learning Environment) - this is an environment that allows you to easily write Python code. IDLE can be used to execute a single statements and create, modify, and execute Python scripts.

Python Shell - This is the interactive environment that allows you to type in python code and execute them immediately

System Python - This is the version of python that comes with your operating system

Prompt - usually represented by the symbol ">>>" and it simply means that python is waiting for you to give it some instructions

REPL (Read-Evaluate-Print-Loop) - this refers to the sequence of events in your interactive window in form of a loop (python reads the code inputted>the code is evaluated>output is printed)

Argument - this is a value that is passed to a function when called eg print("Hello World")... "Hello World" is the argument that is being passed.

Function - this is a code that takes some input, known as arguments, processes that input and produces an output called a return value. E.g print("Hello World")... print is the function

Return Value - this is the value that a function returns to the calling script or function when it completes its task (in other words, Output). E.g.
>>> print("Hello World")
Hello World
Where Hello World is your return value.

Note: A return value can be any of these variable types: handle, integer, object, or string

Script - This is a file where you store your python code in a text file and execute all of the code with a single command

Script files - this is a file containing a group of python scripts
👍111
🔰 The Modern Python 3 Bootcamp

🌟 4.7 - 27538 votes 💰 Original Price: $99.99

A Unique Interactive Python Experience With Nearly 200 Exercises and Quizzes

Taught By: Colt Steele

Download Full Course: https://t.iss.one/pythonfreebootcamp/134
Download All Courses: https://t.iss.one/programming_guide
👍4
1. write a python program to print the Hello universe!


print("Hello universe!")
👍6
2. write a program to add two numbers.



a=input("Enter first number :")
a=(int(a))

b=input("Enter second number:")
b=(int(b))

print("Sum ", a+b)
👍7
3. Write a program to find remainder when a number is divided by 2



a = input ("Enter the number :")

a = int((a))

Remainder = a%2

print("Remainder is ",Remainder)
👍6
4. Check the type of the variable assigned using input() function




a= input ("Enter something :")

print(type(a))
👍2
🔰 Learning Python for Data Analysis and Visualization

21 Hours 📦 110 Lessons

Learn python and how to use it to analyze,visualize and present data. Includes tons of sample code and hours of video!

Taught By: Jose Portilla

Download Full Course: https://t.iss.one/pythonanalyst/26
Download All Courses: https://t.iss.one/DataAnalystInterview
👍32
🔟 Python resources to boost your resume in 2023

𝟭. 𝗜𝗻𝘁𝗿𝗼 𝘁𝗼 𝗣𝘆𝘁𝗵𝗼𝗻
This a great course to get started with learning Python, if you have no coding experience.
👉 https://kaggle.com/learn/intro-to-programming

𝟮. 𝗣𝘆𝘁𝗵𝗼𝗻 𝗣𝗿𝗼𝗴𝗿𝗮𝗺𝗺𝗶𝗻𝗴 𝗰𝗼𝘂𝗿𝘀𝗲
Learn the fundamentals like functions, loops, conditional statements, etc of the most important language for data science.
👉 https://kaggle.com/learn/python

𝟯. 𝗣𝗿𝗼𝗴𝗿𝗮𝗺𝗺𝗶𝗻𝗴 𝗘𝘀𝘀𝗲𝗻𝘁𝗶𝗮𝗹𝘀 𝗶𝗻 𝗣𝘆𝘁𝗵𝗼𝗻
Part 1 prepares you for PCEP – Certified Entry-Level Python Programmer Certification.
Part 2 prepares you for PCAP – Certified Associate in Python Programming Certification.
👉 https://netacad.com/courses/programming/pcap-programming-essentials-python

𝟰. Python Data Structure and Algorithms
👉
https://t.iss.one/programming_guide/76

𝟱. 𝗦𝗰𝗶𝗲𝗻𝘁𝗶𝗳𝗶𝗰 𝗖𝗼𝗺𝗽𝘂𝘁𝗶𝗻𝗴 𝘄𝗶𝘁𝗵 𝗣𝘆𝘁𝗵𝗼𝗻
You'll learn Python fundamentals like variables, loops, conditionals, and functions.
Then you'll quickly ramp up to complex data structures, networking, relational databases, and data visualization.
👉 https://freecodecamp.org/learn/scientific-computing-with-python/

𝟲. 𝗗𝗮𝘁𝗮 𝗔𝗻𝗮𝗹𝘆𝘀𝗶𝘀 𝘄𝗶𝘁𝗵 𝗣𝘆𝘁𝗵𝗼𝗻
You'll learn how to read data from sources like CSVs and SQL, and how to use libraries like Numpy, Pandas, Matplotlib, and Seaborn to process and visualize data.
👉 https://freecodecamp.org/learn/data-analysis-with-python/

𝟳. 𝗗𝗮𝘁𝗮 𝗩𝗶𝘀𝘂𝗮𝗹𝗶𝘇𝗮𝘁𝗶𝗼𝗻 𝘄𝗶𝘁𝗵 𝗣𝘆𝘁𝗵𝗼𝗻
You will learn how to implement the graphical representation of data in order to interactively and efficiently convey insights to clients, customers, and stakeholders in general.
👉 https://cognitiveclass.ai/courses/data-visualization-python#about-course

𝟴. 𝗠𝗮𝗰𝗵𝗶𝗻𝗲 𝗟𝗲𝗮𝗿𝗻𝗶𝗻𝗴 𝘄𝗶𝘁𝗵 𝗣𝘆𝘁𝗵𝗼𝗻
You will build several neural networks and explore more advanced techniques like natural language processing and reinforcement learning.
👉 https://freecodecamp.org/learn/machine-learning-with-python/

9. Practice Python
👉
https://learnpython.org/

10. Free Python course by datacamp
👉
https://campus.datacamp.com/courses/intro-to-python-for-data-science/chapter-1-python-basics?ex=1

ENJOY LEARNING 👍👍
👍95
Who developed the Python Programming Language?
Anonymous Quiz
14%
Wick van Rossum
11%
Rasmus Lerdorf
72%
Guido van Rossum
2%
Niene Stom
2