Python programming codes
43 subscribers
25 photos
1 video
83 files
82 links
Uploading All programming codes are updating Daily
ask doubts in comment box ๐ŸŽโ˜‘๏ธ
Download Telegram
Forwarded from SMW Services
๐Ÿ”บPYTHON๐Ÿ”บ(VARIABLE & DATATYPES) NOTES ๐Ÿ”น(PART- 1).pdf
3 MB
๐Ÿ”บPYTHON๐Ÿ”บ(VARIABLE & DATATYPES) NOTES ๐Ÿ”น(PART- 1).pdf
๐Ÿ”บDATA STRUCTURE๐Ÿ”บ SHORT NOTES (PART- 1).pdf
788.3 KB
๐Ÿ”บDATA STRUCTURE๐Ÿ”บ SHORT NOTES (PART- 1).pdf
๐Ÿ”บSQL DATA TYPES๐Ÿ”บINTERVIEW SERIES.pdf
1.6 MB
๐Ÿ”บSQL DATA TYPES๐Ÿ”บINTERVIEW SERIES.pdf
Forwarded from SMW Services
Complete_DSA_Guide.pdf
953.4 KB
Complete_DSA_Guide.pdf
FREE MICROSOFT & GO0GLE COURSES ๐Ÿ’ก

1 ๐—”๐—œ ๐—ณ๐—ผ๐—ฟ ๐—ฏ๐—ฒ๐—ด๐—ถ๐—ป๐—ป๐—ฒ๐—ฟ๐˜€ course   -   
Check this out ๐Ÿ‘‡https://lnkd.in/dgfaEFxr
๐Ÿฎ. ๐—œ๐—ข๐—ง  ( Internet of things) course  - 
Check this out ๐Ÿ‘‡   https://lnkd.in/dSQECutx

๐Ÿฏ. ๐— ๐—ฎ๐—ฐ๐—ต๐—ถ๐—ป๐—ฒ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด Course -
Check this out๐Ÿ‘‡   https://lnkd.in/dJQvX5ZQ

๐Ÿฐ. ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ  course - 
Check this out๐Ÿ‘‡    https://lnkd.in/dZaYHE5n

๐Ÿฑ. ๐—ฃ๐˜†๐˜๐—ต๐—ผ๐—ป ๐—•๐—ฎ๐˜€๐—ถ๐—ฐ๐˜€ ๐—ณ๐—ผ๐—ฟ ๐——๐—ฎ๐˜๐—ฎ ๐—”๐—ป๐—ฎ๐—น๐˜†๐˜€๐—ถ๐˜€ course-
Check this out๐Ÿ‘‡    https://lnkd.in/dNYQX_xg

๐Ÿฒ. ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ ๐—™๐—ผ๐˜‚๐—ป๐—ฑ๐—ฎ๐˜๐—ถ๐—ผ๐—ป๐˜€ course -
Check this out๐Ÿ‘‡   https://lnkd.in/dNYQX_xg

๐Ÿณ. ๐——๐—ฎ๐˜๐—ฎ ๐—ฆ๐—ฐ๐—ถ๐—ฒ๐—ป๐—ฐ๐—ฒ ๐˜„๐—ถ๐˜๐—ต ๐—ฃ๐˜†๐˜๐—ต๐—ผ๐—ป course - 
Check this out๐Ÿ‘‡   https://lnkd.in/dNYQX_xg

๐Ÿด. ๐— ๐—ฎ๐—ฐ๐—ต๐—ถ๐—ป๐—ฒ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด ๐—–๐—ฟ๐—ฎ๐˜€๐—ต ๐—–๐—ผ๐˜‚๐—ฟ๐˜€๐—ฒ -
Check this out๐Ÿ‘‡   https://lnkd.in/dbkXEGSY

๐Ÿต. ๐—ง๐—ฒ๐—ป๐˜€๐—ผ๐—ฟ๐—ณ๐—น๐—ผ๐˜„ ๐—ณ๐—ผ๐—ฟ ๐——๐—ฒ๐—ฒ๐—ฝ ๐—Ÿ๐—ฒ๐—ฎ๐—ฟ๐—ป๐—ถ๐—ป๐—ด course- 
Check this out๐Ÿ‘‡   https://lnkd.in/dbkXEGSY
#1 Colorful Spiral with Turtle Graphics
from turtle import *
color('red', 'yellow')
begin_fill()
while True:
forward(200)
left(170)
if abs(pos()) < 1:
break
end_fill()
done()
#2 Turtle Circles

import turtle
# Creating turtle
t = turtle.Turtle()

c = t.clone()
t.color("blue")
c.color("red")
t.circle(20)
c.circle(30)
for i in range(40, 100, 10):
c.circle(i)

turtle.mainloop()
#3 Design -1 Circle Spiro graph

from turtle import *
bgcolor("black")
pensize(2)
speed(10)

while (True):
for i in range(6):
for colors in ["red", "blue", "magenta", "green", "yellow", "white"]:
color(colors)
circle(100)
left(10)


hideturtle()
mainloop()
Forwarded from SMW Services
Top 150 Core Java Interveiw Questions and Answers .pdf
111.6 KB
Top 150 Core Java Interveiw Questions and Answers .pdf
How to Email a CV Resume .pdf
648.8 KB
How to Email a CV Resume .pdf
JAVA BASICโ—พNOTES.pdf
1.6 MB
JAVA BASICโ—พNOTES.pdf
#4 Mesmerizing Rainbow Spiral: A Kaleidoscope of Colors
from turtle import *
import colorsys
tracer(10)
h=0.7
pensize(2)
hideturtle()
bgcolor("black")
for i in range(190):
c=colorsys.hsv_to_rgb(h,1,1)
color(c)
h+=0.004
circle(190-i,90)
lt(90)
lt(20)
circle(190-i,90)
lt(18)
done()
Useful websites to practice and enhance your data analytics skills
๐Ÿ‘‡๐Ÿ‘‡

1. Python
http://learnpython.org

2. SQL
https://www.sql-practice.com/

3. Excel
https://excel-practice-online.com/

4. Power BI
https://www.workout-wednesday.com/power-bi-challenges/

5. Quiz and Interview Questions
https://t.me/sqlspecialist

Haven't shared lot of resources to avoid too much distraction

Just focus on the basics, practice learnings and work on building projects to improve your skills. Thats the best way to learn in my opinion ๐Ÿ˜„

ENJOY LEARNING ๐Ÿ‘๐Ÿ‘
#6 chrome logo

from turtle import *
radius=120
setheading(-150)
penup()
color("red")
begin_fill()
forward(radius)
pendown()
right(90)
circle(-radius, 120)
forward (radius*3**.5)
left (120)
circle(2*radius, 120)
left(60)
forward(radius*3**.5)
end_fill()
left(180)
color("green")
begin_fill ( )
forward(radius*3**.5)
left(120)
circle(2*radius, 120)
left(60)
forward(radius*3**.5)
left (180)
circle(-radius, 120)
end_fill()
left (180)
circle(radius, 120)
color("yellow")
begin_fill()
circle(radius,120)
right(180)
forward(radius*3**.5)
right(60)
circle(-2*radius,120)
right(120)
forward (radius*3**.5)
end_fill()
penup()
left(98)
forward(radius/20)
setheading(60)
color("blue")
pendown()
begin_fill()
circle(distance(0,0))
end_fill()
hideturtle()
done()
Forwarded from SMW Services
Dear Professor | Scientist | Scholar,
You are invited to submit original research article (s) as per your research expertise. Article (s) can be submitted from the journal website by using โ€˜Article Submission Systemโ€™ round the year if:
โ€ข plagiarism of the article is less than 30% including references.
โ€ข article is within scope of the journal.
โ€ข article is original and result oriented. For more, Author (s) can visit โ€˜Guidelines for Authorsโ€™ from the journal website.

Attachment:
โ€ข List of Journals of LSP
โ€ข List of Journals of BEIESP

Recommended Journals:
1. International Journal of Engineering and Advanced Technology (IJEAT)
2. International Journal of Recent Technology and Engineering (IJRTE)
3. International Journal of Innovative Technology and Exploring Engineering (IJITEE)
4. International Journal of Soft Computing and Engineering (IJSCE)
5. International Journal of Innovative Science and Modern Engineering (IJISME)
6. International Journal of Management and Humanities (IJMH)
7. International Journal of Inventive Engineering and Sciences (IJIES)
8. International Journal of Basic Sciences and Applied Computing (IJBSAC)
9. International Journal of Advanced Engineering and Nano Technology (IJAENT)
10. International Journal of Emerging Science and Engineering (IJESE)
11. International Journal of Advanced Dental Sciences and Technology (IJADST)
12. International Journal of Advanced Medical Sciences and Technology (IJAMST)
13. International Journal of Preventive Medicine and Health (IJPMH)
14. International Journal of Advanced Pharmaceutical Sciences and Research (IJAPSR)
15. Indian Journal of Data Communication and Networking (IJDCN)
16. Indian Journal of Artificial Intelligence and Neural Networking (IJAINN)
17. Indian Journal of Image Processing and Recognition (IJIPR)
18. Indian Journal of Production and Thermal Engineering (IJPTE)
19. Indian Journal of Signal Processing (IJSP)
20. Indian Journal of Software Engineering and Project Management (IJSEPM)
21. Indian Journal of Computer Graphics and Multimedia (IJCGM)
22. Indian Journal of Design Engineering (IJDE)
23. Indian Journal of Microprocessors and Microcontroller (IJMM)
24. Indian Journal of VLSI Design (IJVLSID)
25. Indian Journal of Advanced Chemistry (IJAC)
26. Indian Journal of Advanced Physics (IJAP)
27. Indian Journal of Advanced Mathematics (IJAM)
28. Indian Journal of Management and Language (IJML)
29. Indian Journal of Advanced Zoology (IJAZ)
30. Indian Journal of Advanced Botany (IJAB)
31. Indian Journal of Data Mining (IJDM)
32. Indian Journal of Environment Engineering (IJEE)
33. Indian Journal of Transport Engineering (IJTE)
34. Indian Journal of Structure Engineering (IJSE)
35. Indian Journal of Agriculture Engineering (IJAE)
36. Indian Journal of Cryptography and Network Security (IJCNS)
37. Indian Journal of Petroleum Engineering (IJPE)
38. Indian Journal of Economics and Finance (IJEF)
39. Indian Journal of Fibre and Textile Engineering (IJFTE)
40. Indian Journal of Social Science and Literature (IJSSL)
41. Indian Journal of Mass Communication and Journalism (IJMCJ)
42. Indian Journal of Energy and Energy Resources (IJEER)
43. Indian Journal of Food Engineering (IJFE)
#5 Vietnam Flag by using Turtle Graphics Design

from turtle import*
backward(100)
def suare():
for i in range(2):
fd(400)
lt(90)
fd(250)
lt(90)
color("black")
fillcolor("red")
begin_fill()
suare()
end_fill()
color("grey")
begin_fill()
lt(90)
fd(290)
lt(90)
fd(10)
lt(90)
fd(650)
lt(90)
fd(10)
lt(90)
fd(360)
end_fill()
fd(135)
penup()
rt(90)
fd(140)
pendown()

def draw_star(size):
fillcolor("yellow")
begin_fill()
for i in range(5):
fd(size * 2.5)
rt(144)
end_fill()
title("Yellow Star")
bgcolor("white")
color("yellow")
draw_star(50)
fd(48)
begin_fill()
for i in range(5):
fd(30)
rt(72)
end_fill()
hideturtle()
done()
#7Radha Krishna using Python Turtle
import turtle

#keeping the background color dark blue
turtle.bgcolor('#ffc233')

#Defining title of program
turtle.title("Radhe Krishna")

#Creating turtle screen
screen= turtle.Screen()
#Defining height and width of screen
screen.setup(650,580)

t1 = turtle.Turtle()

#keeping the fasted speed for now, you can keep the speed as needed
#'fastest' : 0
#'fast' : 10
#'normal' : 6
#'slow' : 3
#'slowest' : 1

t1.speed(4)

#Let's move down and go the position from where we will start to draw
t1.right(90)
t1.pu()
t1.forward(180)
t1.left(90)
#Now, the turtle is pointing positive x-axis

#Let's keep the pen down and start to draw the base
t1.pd()
#Here we have dipped our turtle brush in a shade of blue color
t1.fillcolor("#ff99d1")
t1.begin_fill()
t1.forward(400)
t1.right(90)
t1.forward(100)
t1.right(90)
t1.forward(800)
t1.right(90)
t1.forward(100)
t1.right(90)
t1.forward(400)
t1.end_fill()
#Now, we have drawn the base which is rectangular in shape
#end_fill will fill blue color (selected above), in the shape formed by turtle

#Now, we will start to draw moon,I have selected a very light shade of blue to color moon
t1.fillcolor("#CDEEF1")
t1.begin_fill()
t1.forward(160)
t1.left(40)
#this method will draw the moon's border
t1.circle(250,280)
t1.left(40)
t1.forward(160)
t1.end_fill()
#Now, we have drawn the moon as well as filled color in it

#Now, we will start drawing Radha Krishna
#We will draw Radha on our right side and Krishna on left side
#We will start with Radha
t1.fillcolor("#012427")
t1.begin_fill()
#We will start with the duppata
t1.forward(160)
t1.left(130)
t1.circle(-300,30)
t1.forward(95)
#This will draw the shoulder
t1.circle(50,40)
t1.right(40)
#This will draw the head
t1.forward(43)
t1.circle(80,25)
t1.circle(50,30)
t1.left(10)
t1.circle(35,28)
#Now, we have completed drawing Radha

#Now, let's draw krishna's turban
t1.right(160)
t1.circle(10,100)
t1.right(100)
t1.circle(10,80)
t1.forward(20)
t1.left(80)
t1.circle(100,15)
t1.right(90)
t1.forward(6)
t1.left(65)
t1.circle(60,55)

#Following code will draw Krishna's morpankh
t1.right(160)
t1.circle(20,100)
t1.forward(10)
t1.circle(-20,25)
t1.left(170)
t1.circle(-20,40)
t1.forward(10)
t1.circle(20,80)
#morpankh done

#We will continue to draw rest part of turban
t1.right(135)
t1.circle(60,15)
t1.left(70)
t1.forward(6)

t1.right(110)
t1.forward(9)

t1.left(80)
t1.circle(70,24)

t1.right(60)
t1.circle(65,30)
t1.circle(-5,110)

#Below lines of code will draw the right hand of Krishna
t1.circle(5,120)
t1.right(90)
t1.circle(5,60)
t1.forward(10)
t1.circle(10,5)
t1.right(80)
t1.forward(15)
t1.circle(-5,160)
#Now, we will draw the first open finger of right hand
t1.forward(6)
t1.circle(2,180)
t1.forward(6)
t1.circle(20,30)

#Below lines will draw fingers holding bansuri
t1.right(140)
t1.circle(3,150)
t1.right(110)
t1.circle(4,80)
t1.forward(2)
t1.right(100)

#Here, we will draw second open finger of krishna
t1.forward(6)
t1.right(60)
t1.forward(9)
t1.circle(2,180)
t1.forward(10)
t1.left(30)
t1.forward(15)

#We will now start to draw bansuri
t1.right(85)
t1.forward(40)
t1.right(60)
t1.circle(5,310)
t1.right(80)
t1.forward(3)
t1.right(90)

#dor on bansuri
t1.forward(42)
t1.right(30)
t1.forward(10)
t1.left(90)
t1.circle(20,60)
t1.left(95)
t1.forward(12)
t1.right(29)
t1.forward(42)

#We will draw the rest part of bansuri
t1.right(90)
t1.forward(34)
t1.right(85)

#left hand of Krishna
t1.forward(2)
t1.circle(60,25)

#Now, we will draw Krishna's duppata
t1.right(80)
t1.circle(10,40)
t1.forward(45)
t1.left(10)
t1.forward(130)

#Below lines will draw the plates of duppata
t1.left(90)
t1.forward(20)
t1.right(90)
t1.forward(10)
t1.left(90)
t1.forward(10)
t1.right(90)
t1.forward(5)
t1.left(90)

t1.forward(25)

#This will complete drawing duppata
t1.left(100)
t1.forward(120)

t1.right(175)
t1.circle(50,50)

#Now, we will tilt turtle towards required direction and draw Krishna's dhoti
t1.right(80)
t1.circle(110,15)
t1.forward(75)
#The turtle will now reach to the rectangular base we had drawn in the beginning
t1.left(97)
t1.forward(260)
t1.end_fill()
#At this point, we have completed drawing Radhe Krishna

t1.pu()
t1.right(90)
t1.forward(100)
t1.right(90)
t1.forward(420)

#Lets also write their holy name in our drawing
t1.color("#00a606")
t1.write("Radhe Krishna....", font=("Script",15, "bold"))

t1.hideturtle()

turtle.done()