Tagged Questions
4
votes
3answers
229 views
how to combine exponents? (x**a)**b => x**(a*b)?
how to simplify exponents in equations in sympy
from sympy import symbols
a,b,c,d,e,f=symbols('abcdef')
j=(a**b**5)**(b**10)
print j
(a**(b**5))**(b**10) #ans even after using expand simplify
# ...
1
vote
7answers
181 views
Help me simplify this code (Python)
I'm a beginner in Python, teaching myself off of Google Code University. I had this problem as an exercise, and was able to solve it using the solution shown below:
# F. front_back
# Consider ...
0
votes
4answers
268 views
Simplifying Data with a for loop (Python)
I was trying to simplify the code:
header = []
header.append(header1)
header.append(header2)
header.append(header3)
...
-1
votes
1answer
133 views
Simplifying Python program
I'm a complete beginner in Python and programming in general. I made a program for Spotify's Best Before puzzle. It was accepted. I have looked a litle around on internet and looked at other solutions ...