Skip to content

Latest commit

 

History

History

0x00-python-hello_world

0x00. Python - Hello, World

Resources:books:

Read or watch:


Learning Objectives:bulb:

What you should learn from this project:

  • Why Python programming is awesome
  • Who created Python
  • Who is Guido van Rossum
  • Where does the name ‘Python’ come from
  • What is the Zen of Python
  • How to use the Python interpreter
  • How to print text and variables using print
  • How to use strings
  • What are indexing and slicing in Python
  • What is the official Holberton Python coding style and how to check your code with PEP 8

  • Write a Shell script that runs a Python script.
  • Write a Shell script that runs Python code.
  • Write a Python script that prints exactly "Programming is like building a multilingual puzzle, followed by a new line.
  • Complete this source code in order to print the integer stored in the variable number, followed by Battery street, followed by a new line.
  • Complete the source code in order to print the float stored in the variable number with a precision of 2 digits.
  • Complete this source code in order to print 3 times a string stored in the variable str, followed by its first 9 characters.
  • Complete this source code to print Welcome to Holberton School!
  • Complete this source code
  • Complete this source code to print object-oriented programming with Python, followed by a new line.
  • Write a Python script that prints “The Zen of Python”, by TimPeters, followed by a new line.
  • Technical interview preparation:
  • Write a Python script that prints exactly and that piece of art is useful - Dora Korpar, 2015-10-19, followed by a new line.
  • Write a script that compiles a Python script file.
  • Write the Python function def magic_calculation(a, b): that does exactly the same as the following Python bytecode:

Author