Wumpus in Python#
Hunt the Wumpus is an important early computer game history.
This was the first computer game I played in 1974. I played it on the University of Utah mainframe in the Merrill Engineering Building while enrolled in the class Kids, Turtles, and Computers.
It has a fond place in my heart as I am still programming after all of these years.
The two versions consist of Python with basic mixed in (line
numbers and all), wumpus_BASIC.py
,
and one that is effectively the same as the original but is
Pythonic, wumpus.py
.
Source#
License#
wumpus.py is © 2006, Lance Finn Helsten.
Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at <http://www.apache.org/licenses/LICENSE-2.0>_
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.