Learn Python Programming - 4 - Interactive Shell vs. Script

preview_player
Показать описание
We will discuss the difference between an interactive python terminal vs. A python script. ...
...
★☆★ FREE Lesson 1: The Most Important Thing For a Successful Programmer★☆★

Enroll for coding exercises, projects, tutorials, and courses...
Clever Programmer
Snapchat ► Rafeh1
Рекомендации по теме
Комментарии
Автор

import turtle
l = turtle.Turtle

for i in range(4):
turtle.forward(100)
turtle.left(90)

rogercastro
Автор

Hi, I am thinking about learning this program and was nervous about it being too complicated for me, but you made it look so easy, now I'm excited. Thank you. You are a great teacher.

s.claire
Автор

i love how u trasfer the computer world to the real world, or more common innerstandable examples.... day 1 due to your proper guidance and mentorship

damightyadvisor
Автор

Just tried naming the file as turtle.py and I have to reinstall the python to proceed.I think it replaces the turtle module file with our program.Its fun doing these kind of things :-)

ayrus
Автор

Thank you. I think I found what I love finally. I want to learn as much as I can. You are a great teacher.

feliciabench
Автор

This looks cool :)
import turtle

my_turtle = turtle.Turtle()

for y in range (0, 36):
for x in range (0, 360):
my_turtle.forward(3)
my_turtle.left(1)
my_turtle.right(10)

ElStefanoPaolo
Автор

import turtle

turtle_test = turtle.Turtle()


turtle_test.forward(100)
turtle_test.left(90)
turtle_test.forward(100)
turtle_test.left(90)
turtle_test.forward(100)
turtle_test.left(90)
turtle_test.forward(100)
turtle_test.left(90)



i love you way explaining ive seen tons scripting youtubers all talk like if we were dead animals you really got me into the stuff

AsgharAli-nioo
Автор

You need more subs, more views.You need recognition.!!!

zoroldo
Автор

I like how you explain everything in an easy-to-understand way for anyone to learn.
Some code instructors out there use so much programmer speech and don't really explain their processes and logic in an understandable way, but you do.
Thank you, thank you.

ianm
Автор

Simple explained-best way to learn something, too shame people don't recognize good videos.

TheGagi
Автор

when I open my file, it doesn't show up the black window. it only shows the turtles movement and then closing again...
so each time I want to continue the course, I have to write everything down from start..
how do I get the black window with the script to open?

Tarlev
Автор

Sir, I have made a word 'PYTHON' with the use of turtle should I paste that code in to this comment section???

deepaktyagi
Автор

GREAT QAZI I LIKE THE WAY YOU TEACH US KEEP WALKING KEEP TEACHING

mobilereviewsupdates
Автор

Seeing the turtle make a square is satisfying haha.
How I made the square! ~
import turtle

my_turtle = turtle.Turtle()

my_turtle.forward(100)
my_turtle.left(90)
my_turtle.forward(100)
my_turtle.left(90)
my_turtle.forward(100)
my_turtle.left(90)
my_turtle.forward(100)
my_turtle.left(90)

finleybentson
Автор

the way you introduce turtle to us i also going to introduce u to others!!! finally i can be able to know something abt PYTHON!!

prachishah
Автор

Quazi, thank you brother for starting my jurney in Python, I enjoy your teaching methods, you're brilliant!

kevenahus
Автор

import turtle
x=turtle.Turtle()
side_num=4
side_length=100
angle=360/side_num
for i in range(side_num):
x.forward(side_length)
x.right(angle)
turtle.done()

hhinfosystemspvt.ltd.
Автор

>>> mt.forward(98), mt.left(90), mt.forward(98), mt.left(90), mt.forward(98), mt.left(90), mt.forward(98)

morgengabe
Автор

sir your teaching style is awesome i love it

sidratarar
Автор

>>> import turtle
>>> my_turtle = turtle.Turtle()
>>>
>>> for i in range(4):
my_turtle.forward(100)
my_turtle.left(90)


>>>

jonah