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()