Category: Python Programming
Python Programming concepts, programs, discussions

21 Jan, 2023
Protected: Machine Learning with Python – 01M0
This content is password protected. To view it please enter your password below: Password:
Read More13 Jan, 2023
Lecture Notes – I
text1 = 'Hello' 'World'text2 = "hi there"text3 = '''How are youwhere are youwhat do you
Read More
11 Jan, 2023
Learn Python
DAY 1 #interpreter - Python, R#compiler - Java, C C++print(5-3) #adding 5 and 3print()print("5+3=",5+3,"and 5*6=",5*6)
Read More2 Jan, 2023
January 2023 Evening
DOWNLOAD LINKSPython: https://learn.swapnil.pw/python/pythoninstallation Pycharm: https://learn.swapnil.pw/python/pythonides R & RStudio: https://swapnil.pw/uncategorized/installating-r-studio Domain Knowledge: https://www.mckinsey.com/featured-insights Refer handnotes on Android Phone: Story
Read More29 Dec, 2022
Learn with Ray
DAY 1: print("Hello")print('how are you today?')print(5+4)print('5+4')print('5+4=',5+4,'and 6+4=',6+4)var_1 = 5 #datatype is implicitprint(var_1+10)#variable naming rule: It shouldnt
Read More24 Dec, 2022
Python Zero to Hero
### DAY 1print("Welcome")val1 = 5#val1 is a variable in this caseprint("val1")print("Value of variable val1 =",val1)#type()
Read More21 Jul, 2022
OSError errno22 invalid argument in Python
What is OSError?OSError is the type of error in OSError : [errno22] invalid argument. OSError
Read More
19 Mar, 2022
Installation of Anaconda for Python on Local Machine
Installing on Windows Download the installer: Miniconda installer for Windows. Anaconda installer for Windows. Verify
Read More
4 Oct, 2021
How to get date and time in Python
Python has a module called as datetime which gives the current date and time in
Read More
22 Sep, 2021
How classes and objects are used in Python
Python is said to be a pure object oriented programming language and almost everything you
Read More