Tuesday 16 June 2020

great i wanna learn python


so i search and find  this....


How to Become a Python Freelancer 2019 - Ultimate Guide






jom jom jom

Join my FREE 4-Part video masterclass: To learn how to become a full-stack freelance web developer... https://www.cleverprogrammer.com Enroll for exercises, tutorials, courses, and projects... http://cleverprogrammer.io/enroll Enroll in Learn Python™ course http://cleverprogrammer.io/enroll ==================================================

whois

at linked profile


https://www.linkedin.com/in/cleverprogrammer

--=======================----


dalam proses belajar
intro == Course Introduction
install python == Install Python
learn print hello world
learn import turtle
and draw a square
Learn the Basics Through Visual Exercises

The Power of Functions

Data Types  = Primitive Data Types

String Slicing NOT Cake Slicing

Append List Method






=======


## Display the numbers from 1 to 5.
# This part if the code draws a square
import turtle
my_turtle = turtle.Turtle()

def square(length, angle):

 my_turtle.forward(length)
 my_turtle.left(angle)
 my_turtle.forward(length)
 my_turtle.left(angle)
 my_turtle.forward(length)
 my_turtle.left(angle) 
 my_turtle.forward(length)
 my_turtle.left(angle)



for i in range(50):
    square(100,90)

    my_turtle.right(10)




No comments: