Number Guessing Game - Python: Tutorial 12

preview_player
Показать описание
In this tutorial I go over making a basic Python number guessing game with you. This is intended to show you a practical use for everything I have taught you so far in this 'Introduction To Python' series. Watch the next tutorial where we add to this game. Thanks for watching!!!

Thanks for watching!!!! Comment, like, and subscribe

My Links:

These tutorials take a lot of time out of my day. If you feel obligated to make a donation, there's a link on my channel. Thanks!
Рекомендации по теме
Комментарии
Автор

this was cool, but how do you know when and how to put some commands. i'm learning python and I could understand all thw code but It seems that we should have a "grammar" lesson for python :\

Teen-Conor
Автор

I try to run the program but it keeps on saying this:

Traceback (most recent call last):
File game.py", line 13, in <module>
if(guess > 100 or guess < 1):
TypeError: '>' not supported between instances of 'str' and 'int'

tobybrown
Автор

Hi. I did exactly what you did, and I'm getting an error. It's on the first and second line.

from future import division
from random import radint

It's saying that there is no module named future so it cannot import. Help please?

PhantomsCode