Coding & Data Science Resources
30.4K subscribers
331 photos
515 files
334 links
Official Telegram Channel for Free Coding & Data Science Resources

Admin: @love_data
Download Telegram
Thanks For Completing 100 Subscribers❤️
1
Q. WHAT IS PROGRAMMING ?

--> Programming is writing computer code to create a program, to solve a problem. Programs are created to implement algorithms. Algorithms can be represented as pseudocode or a flowchart, and programming is the translation of these into a computer program. To tell a computer to do something, a program must be written to tell it exactly what to do and how to do it. If an algorithm has been designed, the computer program will follow this algorithm, stepby-step, which will tell the computer exactly what it should do.

Share and Support
https://t.iss.one/free4unow_backup
👍51
Q. What Is Coding?

-->
Coding is an act of interpreting codes from human language to machine-based language. We can also say that it is a subset of programming that gives foundation to programming. In coding, the programmer instructs the computer, what to perform.

The key difference between programming and coding is that programming is the process of developing a program or application that trails certain standards and performs a specified task.

Share and Support
https://t.iss.one/free4unow_backup
👍31
Drawing Beautiful Design Using Python
👇👇
👍4
# Defined function
from turtle import *
import turtle as t

def my_turtle():
# Choices
sides = str(3)
loops = str(450)
pen = 1
# Loop
for i in range(int(loops)):
forward(i * 2/int(sides) + i)
left(360/int(sides) + .350)
hideturtle()
pensize(pen)
speed(30)
left(90)


my_turtle()
t.done()
👨‍💻10👍21
Drawing Beautiful Design Using Python
👇👇
from turtle import *
import turtle as t

def my_turtle():
# Choices
sides = str(3)
loops = str(450)
pen = 1
for i in range(int(loops)):
forward(i * 2/int(sides) + i)
left(360/int(sides) + .350)
hideturtle()
pensize(pen)
speed(30)

my_turtle()
t.done()
👍7
Drawing Spiderman face using Python 👇👇
👍1
Best Telegram channels for jobs and interview guide
👇👇
https://t.iss.one/addlist/fIzEnNS8RP4xOTYx
👍2
Python Data Structures and Algorithms.pdf
11.5 MB
Python Data Structures and Algorithms
👍41
Thanks For Completing 500 Subscribers❤️
4
Coding Projects in Python
👇👇
https://t.iss.one/leadcoding/3?single
👍4