questions/python/page/18
Hello @kartik, Using a modelserializer might be an ...READ MORE
Hello @kartik, If you don't need to query ...READ MORE
Instead of doing a import like __import__ you can ...READ MORE
Hello @kartik, None, False and True all are available ...READ MORE
Example of implicit line continuation: a = some_function( ...READ MORE
While I'm Trying to Compare Two dates ...READ MORE
There is no add() , append() , or insert() method ...READ MORE
You can go through this: from django.contrib.auth.models import ...READ MORE
Using For loop This approach uses for loop ...READ MORE
Hello @kartiK, If you need to pass UUID ...READ MORE
Hi, good question. If you are considering ...READ MORE
Hello @kartik, You need to install the following ...READ MORE
There isn't any need to add file.py while importing. ...READ MORE
Using scan should do the trick: string.scan(/regex/) READ MORE
Hello @kartik, Using a form in a view can ...READ MORE
hello i am a beginner in machine ...READ MORE
Hi@akhtar, If you are trying to install with pip ...READ MORE
for word in read: <--- iterating ...READ MORE
Strings in Python are immutable (can't be changed). Because ...READ MORE
Hi, I am very new to Python ...READ MORE
There are two string methods for this, find() and index(). ...READ MORE
Hello @kartik, request.user is User model object. You cannot access ...READ MORE
Another way could be: color_dict = {'red':'#FF0000', 'green':'#008000', 'black':'#000000', 'white':'#FFFFFF'} for ...READ MORE
Check if it's installed properly, It will work ...READ MORE
Hi@akhtar, You need to install the bs4 package ...READ MORE
Hey, @S, you can have a look at ...READ MORE
Use the original df1 indexes to create ...READ MORE
Hi, @Henll, You should download the version that ...READ MORE
parameters = pd.read_csv(params_filename, sep="\t") free_parameters = parameters.columns.get_values().to_list() free_parameters = ...READ MORE
Hi@akhtar, It seems you don't have a torch ...READ MORE
For Python 3.5+ use: import importlib.util spec = importlib.util.spec_from_file_location("module.name", ...READ MORE
IndexError The IndexError is raised when you attempt to retrieve ...READ MORE
Hi@akhtar, You can use the DateTime module to insert a date into ...READ MORE
Hello @kartik, View functions are called with the ...READ MORE
I'm trying to learn Python and this ...READ MORE
You have to pass byte string as ...READ MORE
I have a model called Tribe which ...READ MORE
Hello @kartik, The render_to_response shortcut was deprecated in Django 2.0, and ...READ MORE
READ MORE
I had recently found its solution and ...READ MORE
Use: pip install --install-option="--prefix=$PREFIX_PATH" package_name You might also want ...READ MORE
I think the general idea of the ...READ MORE
This somewhat depends on what platform you ...READ MORE
how could i calculate weight for fico ...READ MORE
Hi, @There, Make sure that your MongoDB instance ...READ MORE
If i understand your question correct then ...READ MORE
g1 here is a DataFrame. It has a hierarchical index, ...READ MORE
Hello @kartik, Since you are in Django, you ...READ MORE
Simple: st = "abcdefghij" st = st[:-1] There is ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.