Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,150,512 members, 7,808,872 topics. Date: Thursday, 25 April 2024 at 06:22 PM

A Thread For Tutorial On Python Programming - Programming (4) - Nairaland

Nairaland Forum / Science/Technology / Programming / A Thread For Tutorial On Python Programming (140241 Views)

Opportunity To Earn Little Pay Working On Python Assignment. / I want to solve question on python basic / I Have A Very Import Question On Python Syntax (2) (3) (4)

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) ... (32) (Reply) (Go Down)

Re: A Thread For Tutorial On Python Programming by Fizzymidasquil: 1:14am On Jan 21, 2019
It can also be used to build a blockchain, this is why I am also trying to learn it.

Paapii3d:
DAY 1
INTRODUCTION



https://www.youtube.com/watch?v=V8zccWt7NU4

The python Programming Language is one of the most sought for languages today. Reason is because it can be used for the following:
1. Web Development
2. Game development
3. Desktop Application
4. Android Development
5. Data Science/ Deep Learning/ Machine Learning

Understand how to prepare yourself for the python journey or easy transition if you are migrating from another language to python
Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 8:33am On Jan 21, 2019
Fizzymidasquil:
It can also be used to build a blockchain, this is why I am also trying to learn it.


Ya.. In future i'm gonna teach that..
I slightly modified the syllabus which i'll post shortly..

1 Like

Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 8:37am On Jan 21, 2019
DAY 11
DICTIONARIES



https://www.youtube.com/watch?v=OEcN97UBAr8

A Dictionary is a data structure that consists of key value pairs
We use the keys to describe our data and the values to represent the data

Dictionaries can be using curly braces{} or the dict() function

2 Likes

Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 8:18pm On Jan 22, 2019
DAY 12:
DICTIONARY METHODS IN PYTHON



https://www.youtube.com/watch?v=iJUxkYvFWWQ

Dictionaries are important in python and they are used almost everytime.

There are some methods that can be used to manipulate dictionaries. Some of this methods are:

clear()
pop()
popitem()
fromkeys()

2 Likes

Re: A Thread For Tutorial On Python Programming by RobinRay(m): 11:53pm On Jan 23, 2019
following, thank you so much for this.

btw, I'm finding it hard to download the Python extension on VS Code, it keeps saying "we cannot connect to the Extensions Marketplace at this time, please try again later."

is there anyway around this??
Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 1:30pm On Jan 24, 2019
RobinRay:
following, thank you so much for this.

btw, I'm finding it hard to download the Python extension on VS Code, it keeps saying "we cannot connect to the Extensions Marketplace at this time, please try again later."

is there anyway around this??


You should check your network connection, or check if you are using a vpn or something..
Otherwise, you can try connecting to another network.. It should work fine

2 Likes

Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 1:31pm On Jan 24, 2019
HI GUYS, I had a slight issue with my laptop, so i couldn't record these few days, I should be back up tomorrow or the day after.. Thanks smiley smiley smiley

2 Likes

Re: A Thread For Tutorial On Python Programming by vickifeanyi47(m): 4:23am On Jan 25, 2019
Paapii3d:
HI GUYS, I had a slight issue with my laptop, so i couldn't record these few days, I should be back up tomorrow or the day after.. Thanks smiley smiley smiley
Re: A Thread For Tutorial On Python Programming by vickifeanyi47(m): 4:23am On Jan 25, 2019
Paapii3d:
HI GUYS, I had a slight issue with my laptop, so i couldn't record these few days, I should be back up tomorrow or the day after.. Thanks smiley smiley smiley
p
You have done a good work. God will bless u. please can you suggest any good laptop one can use to for programming languages
Re: A Thread For Tutorial On Python Programming by DoctorGenerator: 8:46am On Jan 26, 2019
Bro, more grease to ur elbow, you are doing great and really enjoy ur post.
Re: A Thread For Tutorial On Python Programming by DONADAMS(m): 7:57am On Jan 27, 2019
Paapii3d:
HI GUYS, I had a slight issue with my laptop, so i couldn't record these few days, I should be back up tomorrow or the day after.. Thanks smiley smiley smiley
may God bless you boss...thank you very much
Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 12:34pm On Jan 29, 2019
DAY 13
TUPLES IN PYTHON



https://www.youtube.com/watch?v=d4pN_gfUw4Q

Tuples are immutable data structures in Python.

Tuples cannot be changed after they are created, hence it has the immutability feature.
Tuples are created using () or the tuple function
a = (1,2,3,4,5,6)
b = [5,6,4,7,3,2]
c = tuple(b)
#converts the list b to a tuple

2 Likes

Re: A Thread For Tutorial On Python Programming by vickifeanyi47(m): 7:33pm On Jan 29, 2019
Please who can recommend a good PC for programming as I want to buy one
Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 9:59pm On Jan 29, 2019
vickifeanyi47:
Please who can recommend a good PC for programming as I want to buy one

What is your budget?
Re: A Thread For Tutorial On Python Programming by Towbaba500(m): 10:17pm On Jan 29, 2019
R30000
Re: A Thread For Tutorial On Python Programming by Towbaba500(m): 10:18pm On Jan 29, 2019
Paapii3d:

What is your budget?
30k
Re: A Thread For Tutorial On Python Programming by Towbaba500(m): 10:18pm On Jan 29, 2019
Paapii3d:

What is your budget?
30k
Re: A Thread For Tutorial On Python Programming by styv(m): 12:24am On Jan 30, 2019
This is a very good thing you are doing. keep up the good work.

1 Like

Re: A Thread For Tutorial On Python Programming by vickifeanyi47(m): 1:52pm On Jan 30, 2019
Paapii3d:


What is your budget?
70k
Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 6:56pm On Jan 30, 2019
DAY 14
SETS IN PYTHON



https://www.youtube.com/watch?v=d9cPJoiikFE

Sets are used to create values without repetition or duplication
It is also created just like dictionary using {} but unlike dictionaries, it does not return key value pairs.
Re: A Thread For Tutorial On Python Programming by woodcock(m): 9:42pm On Jan 31, 2019
thanks alot for this tutorial. although i'm joining abit late, i'll work to catch up.
Paapii3d:
DAY 1 CONT'D
INSTALLATION AND SETUP FOR ANDROID, MAC, AND WINDOWS



https://www.youtube.com/watch?v=kfU3B7hy4Bs

Before we begin our journey into the exciting world of python, we need to get a couple of things set up. This would help us write our code effectively and enhance debugging. We will need to download some software and install them on our machines to get started.
Some of the softwares we need to install are: the python compiler, a text editor preferably Visual Studio Code, Git Bash for windows users and Pydroid 3 for Android Users.

The sections shows how u can correctly install them:

Mac Installation: 0:00
Android Installation: 8:24
Windows Installation: 10:31
Re: A Thread For Tutorial On Python Programming by designpulp(m): 7:24am On Feb 01, 2019
This is good to know that you are providing a 30 days tutorials for beginners, and this is a piece of Good news for all of us that we can start learning and follow the instruction given by you to become python programmer. but here I am going to suggest even after learning programming or programming syntax you are not becoming a Pro programmer, So for 30 days of Code visit to HackerRank 30 Days of Code solutions https://www.programmingwithbasics.com/p/hackerrank-30-days-of-code-solutions.html for pro programming you have to be practice and practice more and more So here is the list of Programming Problems with logic and solution. https://www.programmingwithbasics.com/p/list-cpp-language-programs.html. I am sure after this your going to create a big Projects Like this one. Apply this Project logic in Python: Casino Game in C++ https://www.programmingwithbasics.com/2016/03/c-program-for-casino-game-number.html or Number Guessing Program in C++ [img]https://4.bp..com/-GCyIzzFcgsA/Wc7O5jlLK4I/AAAAAAAAC5Q/v34rIGHe0Q00k6TEAt5ulH2tGTHi3O90gCLcBGAs/s640/casino1.PNG[/img].

I hope you like this information.

6 Likes 1 Share

Re: A Thread For Tutorial On Python Programming by Xtiansearching(m): 8:03pm On Feb 01, 2019
please op, how do I download the programming IDE in my laptop
Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 8:30pm On Feb 01, 2019
Xtiansearching:
please op, how do I download the programming IDE in my laptop
It has been explained in the first video on installation and setup
Re: A Thread For Tutorial On Python Programming by Paapii3d(m): 8:35pm On Feb 01, 2019
DAY 15
FUNCTIONS IN PYTHON



https://www.youtube.com/watch?v=IjVhB-QQMFk

Functions are blocks of code that are designed to do one specific job
If you need to perform that task multiple times throughout your program, you don't need to type all the code for the same task again and again
You just call the function dedicated to handling that task, and the call tells python to run the code inside the function

def greet_user():
"""Display a simple greeting"""
print("Hello!" )

greet_user()
# Hello!

2 Likes 1 Share

(1) (2) (3) (4) (5) (6) (7) (8) (9) (10) ... (32) (Reply)

Chronicle Of A Data Scientist/analyst / I Want To Learn Programming. Which Language Should I Start With?

(Go Up)

Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health
religion celebs tv-movies music-radio literature webmasters programming techmarket

Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10)

Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 30
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.