
Write your first Python program by creating a Python file, using the print function to display text, saving with ctrl+s, and running it to see hello world in the terminal.
Practice defining variables to hold values and inputs, then use operators like plus and multiply to compute x plus y, and display or store results in databases.
Learn how to use lists to batch web requests, loop through urls, and manage strings with list operations like sort, reverse, and append, illustrated by cities and stock tracker examples.
Discover how Python packages and modules save you time by providing ready-made functions, and learn to install, import, and use requests with HTTP status codes like 200 and 404.
Learn how to run Python scripts from the Windows command line, navigate folders with dir, execute programs by typing python <script>, and print results like hello world or simple variables.
Learn to perform HTTP requests in Python with the requests library, using get requests to a URL, print the response or public IP address, and view status codes.
Learn to save text to a file in Python using open modes a and w, and understand append versus overwrite. Create files as needed and write text with triple quotes.
Dice Code:
import random
dice1 = random.randint(1,6)
dice2 = random.randint(1,6)
sum = dice1 + dice2
print(sum)
Text Shuffling Code:
import random
list = ["Warsaw", "Berlin", "Amsterdam","Rio De Janeiro", "California"]
random.shuffle(list)
print(list)
~Also available on my Github -> https://github.com/4R1FF1N/Learn-Python/tree/main/Random
Almost every company in the world has a Web Application powering their company, this can be a contact website, business or even E-commerce.
Understanding how to write Web Applications (or websites) is important in today's day and age.
#1 - Simple Web Application, in this part I explain how to write out first web app & run our web-server.
Commands:
Windows Key (the 4-windows key) -> CMD -> pip install pyinstaller
pyinstaller --onefile [file.py]
Learn to run system commands from Python by importing the os module and using os.system, with examples like who am I, cd, and ipconfig, while noting essential security cautions.
Learn Python without ANY experience. I will take you through the absolute basics of Programming & Programming in Python.
Consistency is extremely important in MASTERING any skill. This is why I recommend coming back to this course & programming outside of the course to become a Master in Python!
No prior coding experience? No problem! Our step-by-step lessons are designed for absolute beginners, with clear explanations to build your confidence. You’ll learn how to work with Python’s powerful libraries to create Your own programs, automate tasks & much more!
This course will cover the following:
Basic Programming & Tips
How To Get Started (Code Editor, Required Extensions & More)
Requirements to Program (a working PC with FREE storage is enough)
Basics of Python
Advanced Programming
Making Websites With Flask as a Bonus & Example of Possibilities of Python
(HTML, CSS, JS will also be included)
Making Programs with Python
Running your own Python Server & Development Server
Web Scraping with Python
Using Linux For Python
Automating Tasks with Python
Running Automatic System Commands With Python
File Handling & Editing (Reading, Inserting, Removing..etc)
Making Web Requests Through Command Line
Compiling Python Programs Into .exe Files & Executables
Requirements:
Working PC with FREE Storage & Atleast 8GB of RAM
Internet
Willing To Learn