Modules and commands to create virtual environment your local
Mac
$ pip install virtualenv
$ virtualenv —version
$ virtualenv venv
$ source venv/bin/activate
Windows
To install (make sure virtualenv is already installed):
$ pip install virtualenvwrapper-win
$ mkvirtualenv project_folder
$ workon project_folder
$ deactivate
$ rmvirtualenv venv
$ lsvirtualenv
Mac
$ pip install virtualenv
$ virtualenv —version
$ virtualenv venv
$ source venv/bin/activate
Windows
To install (make sure virtualenv is already installed):
$ pip install virtualenvwrapper-win
$ mkvirtualenv project_folder
$ workon project_folder
$ deactivate
$ rmvirtualenv venv
$ lsvirtualenv
IamPython
Please join our weekly DevSprint now .. use above zoom meeting
YouTube
Streamlit - How to Build Faster DataScience and Machine Learning Apps ?
Streamlit -An open-source Python library that makes it easy to create and share beautiful, custom web apps for machine learning and data science
Install Streamlit using PIP
pip install Streamlit
Make sure that you have min Python 3.6+
To check successful…
Install Streamlit using PIP
pip install Streamlit
Make sure that you have min Python 3.6+
To check successful…
Subject : A Year in Review & Extend Gratitude
We made it! With 2021 just a day away, we here at Python Developers Telegram group had many DevSprints, Coding discussions, 500+ valuable posts, 2300+ python enthusiast connections (all over groups) and also answered many questions posted in the group. I am proud to have helped so many people connect virtually to continue learning when they are reached me but still this is not enough.
Don't ever stop learning as it is a way to success. Coming up with huge ideas in 2021 to connect with 1Million developers through all “iampython” social platforms.
At the end of what’s been an incredibly challenging year, I wanted to take a moment to say thank you each and everyone.
Cheers to 2021 and our continued learning!
Best,
Raja Mahendra P
We made it! With 2021 just a day away, we here at Python Developers Telegram group had many DevSprints, Coding discussions, 500+ valuable posts, 2300+ python enthusiast connections (all over groups) and also answered many questions posted in the group. I am proud to have helped so many people connect virtually to continue learning when they are reached me but still this is not enough.
Don't ever stop learning as it is a way to success. Coming up with huge ideas in 2021 to connect with 1Million developers through all “iampython” social platforms.
At the end of what’s been an incredibly challenging year, I wanted to take a moment to say thank you each and everyone.
Cheers to 2021 and our continued learning!
Best,
Raja Mahendra P
We are connecting tomorrow evening at 8PM IST for Weekly DevSprint.
Topic : Django CV Builder
Presented By : Nithin
Meeting link will be shared later
Topic : Django CV Builder
Presented By : Nithin
Meeting link will be shared later
If anyone interested come forwarded share you coding and project experiences to our global community
I have a question if you would like to answer it
Can you name one database which is real-time and No SQL?
Can you name one database which is real-time and No SQL?
Join new group for Artificial intelligence and Datascience
https://chat.whatsapp.com/J1zYe6aakza9TCVaGZiTwJ
https://chat.whatsapp.com/J1zYe6aakza9TCVaGZiTwJ
WhatsApp.com
WhatsApp Group Invite
IamPython
We are connecting tomorrow evening at 8PM IST for Weekly DevSprint. Topic : Django CV Builder Presented By : Nithin Meeting link will be shared later
Will start in 30 mins.
Please join this live webinar session on YouTube
Please join this live webinar session on YouTube
If you want attend deep dive sessions about AWS by Amazon
Check this link
https://aws.amazon.com/events/builders-online-series/
This is official link and free essential training on 21st Jan 2021
Check this link
https://aws.amazon.com/events/builders-online-series/
This is official link and free essential training on 21st Jan 2021
Amazon
AWS Builders Online Series
AWS Builders Online Series is a free, online program designed to enable you with core AWS concepts, step-by-step architectural best practices including demonstrations to help you get started and accelerate your success on AWS.
What do you mean by *args and **kwargs?
In cases when we don’t know how many arguments will be passed to a function, like when we want to pass a list or a tuple of values, we use *args.
**kwargs takes keyword arguments when we don’t know how many there will be.
In cases when we don’t know how many arguments will be passed to a function, like when we want to pass a list or a tuple of values, we use *args.
**kwargs takes keyword arguments when we don’t know how many there will be.
What is a closure in Python?
A closure in Python is said to occur when a nested function references a value in its enclosing scope. The whole point here is that it remembers the value.
A closure in Python is said to occur when a nested function references a value in its enclosing scope. The whole point here is that it remembers the value.
>>> def A(x):
def B():
print(x)
return B
>>> A(7)()
7