Git Product home page Git Product logo

lists_exercises's Introduction

List Slicing Exercises

Here you will find some exercises on list slicing and indexing.

Jupyter Shortcuts

We also have some documentation on helpful jupyter notebook shortcuts:

Command Description
dd Deletes current cell
a Create new cell above the currently selected cell
b Create new cell below the currently selected cell
ctrl+enter Execute current cell and stay on current cell
shift+enter Execute current cell and move to cell below
alt+enter Execute current cell and create new cell below
m Change current cell to a markdown cell
y Change current cell to a code cell
l Show / hide line numbers
o Show / hide cell output
Esc Enter command mode
Enter Enter edit mode
h Display help screen

String Formatting

Using .format() without positional arguments

my_name = 'greg'
my_age = 98
print('My name is {} and my age is {}'.format(my_name, my_age))

returns:

My name is greg and my age is 98

Using .format() with positional arguments

my_name = 'greg'
my_age = 98
print('My name is {1} and my age is {0}'.format(my_name, my_age))

returns:

My name is 98 and my age is greg

Using f-strings

my_name = 'greg'
my_age = 98
print(f'My name is {my_name} and my age is {my_age}')

returns:

My name is greg and my age is 98

lists_exercises's People

Contributors

ggodreau avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.