#python-beginner
Read more stories on Hashnode
Articles with this tag
Contents Python Tokens Variables and Assignments Simple Input/Output Data Types Mutable and Immutable Types Expressions If conditions Loops More...
let's learn about relative and absolute path in python. wait, what's that? here's an example, C:\Users\user01\python\example.py - Absolute...
Many people find variable scopes difficult. but don't worry I am here to talk about variable scopes in python. I hope you will understand this topic...
def add(x,y): print(x+y) This function adds 2 digit x,y are the parameters 'add' is the name of the function def is the keyword to define a...