Python Interpreter | Python | Tutorial 35

preview_player
Показать описание

Throughout the course we'll be looking at various topics including variables, lists, tuples, loops, conditionals, object orientation, and much more.
Рекомендации по теме
Комментарии
Автор

We did it bois, we are beginner programmers!

adeebr
Автор

THANK YOU!!! WE NEED MORE PYTHON PROGRAMMING TUTORIALS))) AND DJANGO))) WE NEED INTERMEDIATE TUTORIALS NOW)))

cultofsogga
Автор

Any advice on what to do now or what options we have after finishing this series would be greatly appreciated

a-note
Автор

So... Is that the end of the course? Do I know Python now? I feel that I know more than before, but in other way it feels like I don't know anything...

aituganmirash
Автор

The perfect pace I found finally. It was really nice. Now that you know what we know, we want you to take us beyond basics and guide us further through some projects.

viveksuman
Автор

For windows CMD to enter into python interpreter you just type python instead of python3. Enjoyed the video though thanks Mike.

bradleypruett
Автор

Thank you Mike for giving me the basics of Python, this course has been very very useful because you teach very well. Thank you again Mike!!!

giacomozerbini
Автор

Thanks for the Python series, Mike. Very helpful. Any chance you can make more Python tutorials?

RiftWarth
Автор

mike = "super smart!!"
print("Mike is " + mike)

jesusb
Автор

Hey Mike Thanks a lot for all the series, you're an excellent teacher, love the way you explain with examples, that's exactly how I learn best, I'm looking forward to future Python Courses.
I will definitely check other languages. Thanks again!

mrbak
Автор

I just finished the series, but idk what to do know. If anyone has any suggestions it would be really appreciated

felixturcotte
Автор

Thank you so much! Combined with other sources like "A Byte of Python" this course was very useful.

vitaliylankov
Автор

Typing just "python" works for me with Python 3. "python3" did not work. On Windows 10.

theisaiahcc
Автор

Hi! I created a very simple interpreter in python. Source code:
import sys
print("Python shell. (3.7.4")
while True:
x = input(">>> ")
if x == "exit":
break
try:
y = eval(x)
if y:
print(y)
except:
try:
exec(x)
except BaseException as e:
print("ERROR", e, file=sys.stderr)

And I also created a shell in tkinter.

psirohi
Автор

Thank you so much, you have really helped me to understand basic python which i believe is going to pave the way for me to understand other programming languages

abedbig
Автор

MR Mike Dane what can I do after finishing those 35 videos ?

AhmedMahmoud-gluk
Автор

can u please make a intermediate course for python

OG
Автор

4:27 how the heck did he use a semicolon in python

andeemengaming
Автор

4:04 -- why is there a semicolon at the end of the print statement?

kennykistler
Автор

Dane can you respond to our questions: what next after this?

What curriculum can we use to know knowledge to go for

agnesamos