Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
72% Quality Score
Upvotes Received
3
Posts with Upvotes
2
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
2 Commented Posts
0 Endorsements
Ranked #22.5K
~3K People Reached
Favorite Tags
Member Avatar for vishwas_1

Hii ,I was making a factorial program in python using recursion/ but I have one doubt : if I run the program I get the error as : " result=x*fact(x-1) TypeError: unsupported operand type(s) for *: 'int' and 'NoneType'" But If I run it with the commented statements it works …

Member Avatar for Reverend Jim
0
703
Member Avatar for Parth_1

I am Developing a project on Face Detection in images for my final year project in university. I am unable to find source code for java. I end up getting source code for opencv or matlab.I need code for face detection on images in java. Face detection as in box …

Member Avatar for hussainmujtaba
0
101
Member Avatar for Meh123

def shift_matrix(a): start_row=0 start_col=0 end_row=len(a[0])-1 end_col=len(a)-1 prev=a[0][0] while (start_row<end_row and start_col<end_col): for i in range(start_col,end_col+1): temp=a[start_row][i] a[start_row][i]=prev prev=temp start_row+=1 for i in range(start_row,end_row+1): temp=a[i][end_col] a[i][end_col]=prev prev=temp end_col-=1 for i in range(end_col,start_col-1,-1): temp=a[end_row][i] a[end_row][i]=prev prev=temp end_row-=1 for i in range(end_row,start_row,-1): temp=a[i][start_col] a[start_col]=prev prev=temp start_col+=1 a[0][0] = prev a = [[ 1, …

Member Avatar for hussainmujtaba
0
32
Member Avatar for nevin6969

In python how to write a program which takes a number of days from now - 100 days, and find in which month that future day is.

Member Avatar for amazingadmin
0
223
Member Avatar for pythonstudent28

Hi. I'm trying to write a program on Python that uses a turtle that shows a map and draws a line from one point to another after the user enters where they want to go from. Can anyone help me start this code? Thank you!

Member Avatar for Reverend Jim
0
85
Member Avatar for Kumarvarun0609

WAP to check student is first ,second or third . If number is greater than equal to 60->>first If number is greater than equal to 45->>second If number is greater than equal to 33->>third If other than that ->>fail

Member Avatar for hussainmujtaba
-3
243
Member Avatar for davy_yg

Can anyone help me explain what is Machine Learning? I have been googling for the subject and still do not understand what it is. Please help. 1) How could a Machine learn about information? By finding an equation of a pattern? or by having the user inputing a new information …

Member Avatar for Reverend Jim
0
513
Member Avatar for Vignesh_8

Hey!! I am facing issue when i try to tokenize a whole column that contains reviews of customer. my file is stored in readfile my column that i want to tokenize is 'Customer reviews' This is my python code: print("tokenization..\n") appling_tokenization= readfile.apply(lambda row: nltk.word_tokenize(row['Customer reviews']), axis=1) My error is: TypeError: …

Member Avatar for hussainmujtaba
0
98
Member Avatar for Lev_3

Hello people! :) I'm quite new in the programming world. I'm really interested in programming from the time I found that there's coming a game called Hytale, and **I would love to be able to make mods for it**. So basically I have a book that should introduce me to …

Member Avatar for hussainmujtaba
0
919
Member Avatar for Zinavo