Skip to content

den01-python-programming-exercises/exercise-1-1-ada-lovelace-Zadane1303

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Exercise 1.1 Ada Lovelace

The program template contains the following:

def main():
  #write your code below this line

if __name__ == '__main__':
    main()

The line # Write your program here is a line comment, and the computer will ignore it when executing the program. Add a new line below the line comment that prints the string "Ada Lovelace" and run the program.

The output of the program should be:

Ada Lovelace

Note: Don't worry too much about if __name__ == '__main__': at the moment. We don't technically need it for this program, but it's good practise to include it and it'll be clearer in later exercises.

Once you've finished the exercise and see that it prints the correct string, return the exercise to Github via the submission process. After that, you can read more about Ada Lovelace, who was one of the first programmers.

About

exercise-1-1-ada-lovelace-Zadane1303 created by GitHub Classroom

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages