Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / New
Stats: 3,143,308 members, 7,780,729 topics. Date: Thursday, 28 March 2024 at 08:52 PM

What Can I Make With Python? - Programming - Nairaland

Nairaland Forum / Science/Technology / Programming / What Can I Make With Python? (1151 Views)

Learn How To Create Websites With Python(Django Web Framework) / Data Science With Python Tutorial / MY JOURNEY WITH PYTHON!!! (2) (3) (4)

(1) (Reply) (Go Down)

What Can I Make With Python? by Bahat: 1:19pm On Sep 04, 2020
Tools with cross platform support: security tools, account creators, website scrapers, proxy checkers, Discord bots, Steam bots, Reddit bots, malware, botnet backends, websites, APIs for websites like Instagram and Twitter, plugins for games like Sims 4 or Civilization IV, machine learning scripts, bruteforcers, torrent clients, BTC wallets, and millions of other things.
COPIED.
Re: What Can I Make With Python? by Sirmwill: 1:25pm On Sep 04, 2020
Student:What can i make with Python?

Teacher:Who can answer that question?

Lalasticlala:Python soup
cheesy

5 Likes 1 Share

Re: What Can I Make With Python? by Uzomacharles: 1:35pm On Sep 04, 2020
Python is kinda hard for me
Can you suggest better way to learn it faster or any good offline app for Py with environment to code
Re: What Can I Make With Python? by Bahat: 1:50pm On Sep 04, 2020
Uzomacharles:
Python is kinda hard for me
Can you suggest better way to learn it faster or any good offline app for Py with environment to code

it can be hard to grasp programming concepts at times, keep at it, you will get it, read code(not those 2+2 codes), write code(with library functions)use statements to validate your response. e.g.
def connect(self):
try:
req = urllib.request.Request(self.url)
self.f = urllib.request.urlopen(req).read()
if f.code != 200:
print('[*] Error code {}'.format(code))
except (KeyboardInterrupt, BaseExcpetion):
print('[*] Some Error Occured')
print('[*] Died with Error code {}'.format(self.code))
sleep(2)
exit(1)
THE ABOVE CODE RETURNS A TIMEOUT ERROR CODE for the statement
if f.code != 200:
print (f.code)

with time you will get it.


furl= url + '?'+ dat
try:
req = urllib.request.Request(furl,data,method='POST')
if req.status != 200:
print('Reqesy not success')
except URLError as Error:
error_list=[]
error_list.append(Error)

i use online resources download and read doc files at times.

try:
with urllib.request.urlopen(req) as resp:
page_source = resp.read()
except URLError as Error:
error_list = []
error_list.append(Error)

if you already learn the language just move to creating a project while on the project you will learn the concepts you used. The above codes are sample codes not to stand as a reference might not contain error.
Re: What Can I Make With Python? by Uzomacharles: 2:01pm On Sep 04, 2020
Bahat:


it can be hard to grasp programming concepts at times, keep at it, you will get it, read code(not those 2+2 codes), write code(with library functions)use statements to validate your response. e.g.
def connect(self):
try:
req = urllib.request.Request(self.url)
self.f = urllib.request.urlopen(req).read()
if f.code != 200:
print('[*] Error code {}'.format(code))
except (KeyboardInterrupt, BaseExcpetion):
print('[*] Some Error Occured')
print('[*] Died with Error code {}'.format(self.code))
sleep(2)
exit(1)
THE ABOVE CODE RETURNS A TIMEOUT ERROR CODE for the statement
if f.code != 200:
print (f.code)

with time you will get it.


furl= url + '?'+ dat
try:
req = urllib.request.Request(furl,data,method='POST')
if req.status != 200:
print('Reqesy not success')
except URLError as Error:
error_list=[]
error_list.append(Error)

i use online resources download and read doc files at times.

try:
with urllib.request.urlopen(req) as resp:
page_source = resp.read()
except URLError as Error:
error_list = []
error_list.append(Error)

if you already learn the language just move to creating a project while on the project you will learn the concepts you used. The above codes are sample codes not to stand as a reference might not contain error.


Yah that's why I need a tool like to learn from (offline app) so it will be better for me
Re: What Can I Make With Python? by Bahat: 2:06pm On Sep 04, 2020
Uzomacharles:



Yah that's why I need a tool like to learn from (offline app) so it will be better for me

Tools like IDLE or MU_CODE, sublime text or Python cli, i dont understand thats what i make use of.
Re: What Can I Make With Python? by Uzomacharles: 2:15pm On Sep 04, 2020
Bahat:


Tools like IDLE or MU_CODE, sublime text or Python cli, i dont understand thats what i make use of.

Is it for Android?

is it suitable for learning Python?

Does it use MB while using it?

That's my question
Re: What Can I Make With Python? by Bahat: 2:44pm On Sep 04, 2020
Uzomacharles:


Is it for Android?

is it suitable for learning Python?

Does it use MB while using it?

That's my question

All tools works well on windows and linux dont know about Andriod. once downloaded they work fine offline. just import the needed library file then you're good to go. best to use sublime text because of indentation problem when running your code.
Indentation and tabs are what gives most problem but sublime solves that for you.

1 Like

Re: What Can I Make With Python? by Ajibel(m): 12:46am On Sep 05, 2020
Uzomacharles:
Python is kinda hard for me

Learn qbasic then lipsrsealed
Re: What Can I Make With Python? by davooomat(m): 2:36am On Sep 05, 2020
Re: What Can I Make With Python? by SirMichael1: 10:43pm On Sep 05, 2020
Ajibel:

Learn qbasic then lipsrsealed
Lol. Funny.
Re: What Can I Make With Python? by sinkhole: 2:54pm On Sep 06, 2020
Uzomacharles:
Python is kinda hard for me
Can you suggest better way to learn it faster or any good offline app for Py with environment to code
YouTube could be very helpful.
Re: What Can I Make With Python? by Uzomacharles: 3:20pm On Sep 06, 2020
sinkhole:
YouTube could be very helpful.
That's why I seek for offline method
Re: What Can I Make With Python? by sinkhole: 3:21pm On Sep 06, 2020
Uzomacharles:


That's why I seek for offline method
you can always download the video and watch offline. That is what I always do.
Re: What Can I Make With Python? by Bahat: 5:14pm On Sep 06, 2020
sinkhole:
you can always download the video and watch offline. That is what I always do.

Bros leave video, download python book start learning. You can always come back to ask questions
Re: What Can I Make With Python? by sinkhole: 5:59pm On Sep 06, 2020
Bahat:


Bros leave video, download python book start learning. You can always come back to ask questions
OK.
I have learnt a lot and in fact done things I wouldn't be able to do with python by learning from great tutorials on YouTube, but if you think only book is OK for you then fine wink
Re: What Can I Make With Python? by Bahat: 9:31pm On Sep 06, 2020
sinkhole:
OK.
I have learnt a lot and in fact done things I wouldn't be able to do with python by learning from great tutorials on YouTube, but if you think only book is OK for you then fine wink
l

Not only book, there are online forums where you see good codes to learn with
Re: What Can I Make With Python? by Bahat: 12:16pm On Sep 07, 2020
Simple GeoIP tool, it gives info about a particular IP address, it's can be improved with new features. Developed with python

Re: What Can I Make With Python? by Bahat: 9:23am On Nov 19, 2020
sinkhole:
you can always download the video and watch offline. That is what I always do.

You should visit the homepage of the site you intend to learn from, eg django to download their tutorial .tar or .HTML file then you host locally with wamp or xammp to use for future purpose.

Load after hosting with localhost/yourdirfile
Re: What Can I Make With Python? by Larryjayy: 12:47am On Nov 22, 2020
Try LinkedIn

So detailed

(1) (Reply)

Nigeria Startup Bill Set To Deepen Technology Ecosystem / Pls Help! A Program That Would Solve A System Of Linear Equations / Indegenious Dreams

(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. 26
Disclaimer: Every Nairaland member is solely responsible for anything that he/she posts or uploads on Nairaland.