top of page

temp

  • Writer: Rhash Algo
    Rhash Algo
  • Oct 14, 2022
  • 1 min read

BeginHERE

def samp(x):
    return x + 5

def test_samp():
    assert samp(4) == 7

EndHERE

 
 
 

Recent Posts

See All
Misc 1: Pytest

Installation: pip install -U pytest Pytest Version: $ pytest --version pytest 7.1.1 First Test File Name: test_first.py def samp(x):...

 
 
 
Module 2: Beginning Python Basics

The Print Statement Comments Python Data Structures String Operations Simple Input & Output Simple Output formatting Operators in Python

 
 
 

Comments


bottom of page