i would like to make a blackjack algorithm and i have almost finished the code. Although i get all the time the error NameError: name 'pointCoint' is not defined. I found out on the internet that i should change raw_input into input due to the python version 3.6 which i am using. Can somebody help me and have a look at my code whether i am missing something? dealerCount = pointCoint(dealer) NameError: name 'pointCoint' is not defined
Thanks
You have created a function called
pointCount(...)
, notpointCoint
. ChangepointCoint
topointCount
.Complete code: