Learn Coding
Открыть в Telegram
296
Подписчики
Нет данных24 часа
+37 дней
+1130 дней
Загрузка данных...
Похожие каналы
Нет данных
Возникли проблемы? Пожалуйста, обновите страницу или обратитесь к нашему support-менеджеру .
Облако тегов
Входящие и исходящие упоминания
---
---
---
---
---
---
Привлечение подписчиков
декабрь '24
декабрь '24
+11
в 3 каналах
ноябрь '24
+45
в 1 каналах
Get PRO
октябрь '24
+54
в 12 каналах
Get PRO
сентябрь '24
+49
в 5 каналах
Get PRO
август '24
+164
в 38 каналах
Get PRO
июль '240
в 41 каналах
Get PRO
июнь '240
в 42 каналах
Get PRO
май '240
в 0 каналах
Get PRO
апрель '240
в 0 каналах
Get PRO
март '240
в 0 каналах
Get PRO
февраль '24
+93
в 0 каналах
| Дата | Привлечение подписчиков | Упоминания | Каналы | |
| 09 декабря | +3 | |||
| 08 декабря | +1 | |||
| 07 декабря | +2 | |||
| 06 декабря | +1 | |||
| 05 декабря | 0 | |||
| 04 декабря | +1 | |||
| 03 декабря | +2 | |||
| 02 декабря | +1 | |||
| 01 декабря | 0 |
Посты канала
| 2 | ⌨️-----------------------------------------------------------------------------------Setup & Hello World
In this tutorial, we’ll create our first Python program and run it. Let’s get started!
1. Open PyCharm: Search for PyCharm on your computer and open it.
o When PyCharm starts, you’ll see a window prompting you to create a project.
o Optionally, you can change the appearance by going to Configure > Preferences > Appearance and Behavior > Appearance and selecting a dark theme if you prefer.
2. Create a New Project:
o Click Create New Project and name it (e.g., “draft”).
o In the Interpreter section, make sure to select Python 3. On Macs, Python 2 might be the default, so switch it to Python 3 to follow this tutorial properly.
3. Create a Python File:
o Inside the new project folder (e.g., “draft”), right-click, select New > Python File, and name it (e.g., “app”).
o This file will contain our first Python program.
4. Write Your First Program:
o Type the following code in your Python file:
print("Hello, World!")
o This simple program will display “Hello, World!” in the console.
5. Run the Program:
o Click Run at the top of the PyCharm window, then select the file you created (e.g., “app”).
o Look at the bottom console panel, where you’ll see Hello, World! printed.
Congratulations! You’ve just written and executed your first Python program. From here, we’ll dive into more exciting projects and learn new Python skills. | 65 |
| 3 | ⌨️ Installing Python & PyCharm
In this tutorial, we’ll be learning Python 3, so we’ll download and install it. While Python 2 and Python 3 are slightly different, the differences are minor. If you learn Python 3, you’ll still be able to understand and work with Python 2 if needed. Python 3 is ideal for beginners, so that’s what we’ll focus on.
To start:
1. Download Python 3: Go to the Python website, download Python 3, and open the file in your Downloads folder.
2. Install Python 3: Double-click the installer and follow the prompts to complete the installation.
Once Python 3 is installed, the next step is to choose a text editor for writing and running your code. You can technically use any text editor, like Notepad or TextEdit, but specialized tools called IDEs (Integrated Development Environments) are better. IDEs are designed for programming and can help spot errors and guide you in fixing them.
For this course, we’ll use PyCharm, one of the most popular IDEs for Python:
1. Download PyCharm: Go to jetbrains.com/pycharm and click "Download Now."
2. Choose the Free Version: Select the Community Edition, which is free and open-source.
3. Install PyCharm: Open the downloaded file and follow the instructions to install it. (On a Mac, drag it to your Applications folder.)
Now that you have Python 3 and PyCharm installed, you’re ready to start programming! | 56 |
| 4 | ⌨️ Introduction
We’ll start by setting up Python and a text editor to write our programs. First, we need to install Python. Open your web browser and go to www.python.org/downloads. On this page, you’ll see two buttons: one to download Python 3.6.3 (or the latest version of Python 3) and another for Python 2.7.14 (or the latest Python 2 version).
Here’s the key difference between the two:
• Python 2 is an older, legacy version that is no longer actively maintained. While it has more libraries and existing code written for it, it’s becoming outdated, and in a few years, it won’t be used at all.
• Python 3 is the current and future version of Python. It’s actively maintained and supported, making it the better choice for most purposes. | 53 |
| 5 | Fast-Tracking Your Coding Journey to Employment
Choosing the Right Programming Language
Focus on versatile languages like JavaScript or Python.
They are applicable in web development, back-end development, machine learning, and more.
Avoid jumping between languages too often; pick one and stick to it.
Efficient Learning
Use free resources like @Crypto_Whale12 and The Odin Project to start with the basics and build foundational skills. Avoid over-relying on long tutorials or YouTube videos—actively code as you learn.
Take your time to deeply understand concepts rather than rushing to complete courses.
Building Guided Projects
Start with simple vanilla JavaScript or plain Python projects to understand core concepts before using frameworks or libraries.
Follow instructor-led projects to learn how to structure and implement solutions.
Creating Personal Projects
Enhance existing projects by adding unique features or using different APIs.
Host your projects on GitHub and optionally create a personal portfolio website to showcase your work.
Job Application Strategy
Apply for entry-level roles (0–2 years of experience).
Use job boards like LinkedIn or Indeed to find positions, but apply directly through company websites.
Avoid overly formatted resumes that may confuse Applicant Tracking Systems (ATS). Focus on simple, keyword-rich formatting.
Soft Skills and Interviewing
Develop soft skills like communication, positivity, and teamwork.
Show passion and enthusiasm during interviews to stand out.
After failed interviews, take note of difficult questions to study and improve for the next opportunity.
Persistence
It’s normal to face rejections or setbacks. Learn from them and keep improving.
Focus on what you can control—building skills, refining your resume, and practicing for interviews.
Key Advice:
Learning to code and landing your first job takes time and effort. Stay consistent, prioritize practical learning, and showcase your work effectively. Persistence and adaptability are critical to eventual success. | 37 |
| 6 | In Python, there are many built-in functions that are commonly used due to their versatility and convenience. Here are some of the most frequently used ones:
1. print()
- Used to output information to the console.
- Example: print("Hello, World!")
2. len()
- Returns the length (number of items) of an object.
- Example: len([1, 2, 3, 4])
3. type()
- Returns the type of an object.
- Example: type(42)
4. str()
- Converts an object to a string.
- Example: str(42)
5. int()
- Converts an object to an integer.
- Example: int("42")
6. float()
- Converts an object to a floating-point number.
- Example: float("42.0")
7. list()
- Converts an object to a list.
- Example: list("hello")
8. dict()
- Creates a dictionary.
- Example: dict([("key1", "value1"), ("key2", "value2")])
9. sum()
- Returns the sum of all items in an iterable.
- Example: sum([1, 2, 3, 4])
10. max()
- Returns the largest item in an iterable or the largest of two or more arguments.
- Example: max(1, 2, 3, 4)
11. min()
- Returns the smallest item in an iterable or the smallest of two or more arguments.
- Example: min(1, 2, 3, 4)
12. range()
- Generates a sequence of numbers.
- Example: range(0, 10)
13. abs()
- Returns the absolute value of a number.
- Example: abs(-5)
14. round()
- Rounds a number to a specified number of decimal places.
- Example: round(3.14159, 2)
15. sorted()
- Returns a sorted list of the specified iterable's elements.
- Example: sorted([3, 1, 2, 4])
16. input()
- Allows user input from the console.
- Example: input("Enter your name: ")
These functions are essential tools in a Python programmer's toolkit, helping to handle common tasks with ease. | 19 |
| 7 | print( ' /')
print( ' /')
print( ' /')
print( ' /') | 25 |
| 8 | print( 'Hello Iran') | 24 |
| 9 | Daily Combo ✅
✅کمبوی روزانه #دراپی
1403/08/28
لینک ورود به بازی دراپی | 11 |
| 10 | Нет текста... | 15 |
| 11 | Нет текста... | 18 |
| 12 | کامبوی روزانه میجر
ترتیب آوارتا مهم میباشد آواتار ها را به ترتیب انتخاب کنید
این ترکیب در ساعت ۳:۳۰ هر شب تغییر ممکنه پس با دقت وارد کنید زیرا فقط یکیار فرصت وارد کردن دارید
استارت ربات👉👉
ادلیست میجر👉👉 | 20 |
| 13 | Нет текста... | 15 |
| 14 | کامبوی روزانه میجر
ترتیب آوارتا مهم میباشد آواتار ها را به ترتیب انتخاب کنید
این ترکیب در ساعت ۳:۳۰ هر شب تغییر ممکنه پس با دقت وارد کنید زیرا فقط یکیار فرصت وارد کردن دارید
استارت ربات👉👉
ادلیست میجر👉👉 | 1 |
| 15 | کامبوی روزانه میجر
ترتیب آوارتا مهم میباشد آواتار ها را به ترتیب انتخاب کنید
این ترکیب در ساعت ۳:۳۰ هر شب تغییر ممکنه پس با دقت وارد کنید زیرا فقط یکیار فرصت وارد کردن دارید
استارت ربات👉👉
ادلیست میجر👉👉 | 18 |
| 16 | تسک های امروز یوتیوب میمفای
Get Paid to Review Products Online (FULL GUIDE) | MemeGirls
Code: 63714
5 Must-Know Tips to Keep Your Crypto Safe Forever | Part 5 of 6 | MemeFi
Code: 58223
Top Apps to Get Cash Back on Every Purchase🛒 | MemeGirls
Code: 23418
AI Pumps Memecoin GOAT to $700M—Future of Crypto? | MemeFi
Code: 38507
OpenSea’s Secrets: Why NFT Marketplace Rules | Part 2 of 5 | MemeFi
Code: 73129
These Habits Will Make You a Millionaire | Tips from the Wealthy | MemeGirls
Code: 21482
True Horror Stories of Crypto Losses - Don’t Be the Next Victim | Part 6 of 6 | MemeFi
Code: 93614
Make $5000 Every Month Using Your Phone | MemeGirls
Code: 51628
Magic Eden Secrets: Why It’s Ideal for NFT Beginners | Part 3 of 5 | MemeFi
Code: 90118
BULLA vs. BERA: The Ongoing War Between Bulls and Bears | Part 8 of 10 | MemeFi
Code: 16658
SEECRET METHOD TO MAKE $5,000 PER WEEK ON FREELANCE |
MEMEGIRLS
Code: 19317
Bitcoin Boost in Central America: El Salvador Donates for Schools!
Code: 49172
Free Minting on Rarible: No Upfront Fees Needed! | Part 4 of 5
Code: 74794
Bitcoin price $66K to $89K - What's Behind Dramatic Price Swings? | Part 1 of 6
Code: 48628
Small Business Ventures You Can Begin with Under $100
Code: 37189
The Crypto Social Pyramid: Where Do You Rank? | Part 9 of 10 | MemeFi
Code: 80156
HOTTEST DROPSHIPPING NICHES TO BEGIN IMMEDIATELY | MEMEGIRLS
Code: 21744 | 19 |
| 17 | کامبوی روزانه میجر
ترتیب آوارتا مهم میباشد آواتار ها را به ترتیب انتخاب کنید
این ترکیب در ساعت ۳:۳۰ هر شب تغییر ممکنه پس با دقت وارد کنید زیرا فقط یکیار فرصت وارد کردن دارید
استارت ربات👉👉
ادلیست میجر👉👉 | 34 |
| 18 | کامبوی روزانه میجر
ترتیب آوارتا مهم میباشد آواتار ها را به ترتیب انتخاب کنید
این ترکیب در ساعت ۳:۳۰ هر شب تغییر ممکنه پس با دقت وارد کنید زیرا فقط یکیار فرصت وارد کردن دارید
استارت ربات👉👉
ادلیست میجر👉👉 | 24 |
| 19 | کامبوی روزانه میجر
ترتیب آوارتا مهم میباشد آواتار ها را به ترتیب انتخاب کنید
این ترکیب در ساعت ۳:۳۰ هر شب تغییر ممکنه پس با دقت وارد کنید زیرا فقط یکیار فرصت وارد کردن دارید
استارت ربات👉👉
ادلیست میجر👉👉 | 26 |
| 20 | کامبوی روزانه میجر
ترتیب آوارتا مهم میباشد آواتار ها را به ترتیب انتخاب کنید
این ترکیب در ساعت ۳:۳۰ هر شب تغییر ممکنه پس با دقت وارد کنید زیرا فقط یکیار فرصت وارد کردن دارید
استارت ربات👉👉
ادلیست میجر👉👉 | 29 |
