Skip to content

Pratik-sys/code-and-learn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Code-and-Learn 👨‍💻

This repository makes an attempt to tackle the basic problems and theory concepts that revolves around python.


Repo Structure

.
├── Basic
│   ├── largest_int.py
│   └── only_even_nums.py
├── Dictionary
│   ├── get_squares.py
│   └── online_status.py
├── Lists
│   ├── list_methods.py
│   └── list_xor.py
├── Maths
│   ├── XOR.md
│   ├── add_int.py
├── Modules
│   └── Randomness.py
├── README.md
├── Recursion
│   └── Fibonacci
│       ├── fibonacci.md
│       ├── fibonacci_using-built-in_cache.py
└── Strings
    ├── ascii_to_int.py
    ├── capital_index.py

Codes 💻

Basic

View

Dictionary

View

Lists

View

Maths

View

Strings

View

Recursion

View

Modules

View

Data Structures

View

References 📜

Python 🐍

Run your code in your local development environment

  • Unix

    $ cd code-and-learn 
    $ python3 name_of_program  
  • Executable Scripts(Unix)

     chmod +x my_script.py
    ./ my_script.py

  • Windows
    C:\users > cd code_and_learn
    C:\users > python name_of_program