Why my code has syntax errors plz correct it | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Why my code has syntax errors plz correct it

https://code.sololearn.com/c9YTWP4uPODr/?ref=app

14th Nov 2019, 9:24 AM
Satya Chaitanya Yerninti
Satya Chaitanya Yerninti - avatar
2 Answers
+ 3
1. You don't multiply functions by just adding numbers in front of them like this: 2sin(x) Use the * operator: 3*cos(x) You forgot it three times in line 6 2. You forgot two closing parenthesis at the end of line 6 3. You can't use cos and sin just by importing math, there are two ways: 1: you import math, and then use math.cos(x) instead of just cos(x) 2: from math import cos, sin And then you can use them just like in your code, without math.cos or math.sin
14th Nov 2019, 9:32 AM
Aymane Boukrouh
Aymane Boukrouh - avatar
0
Thanks bro😍
14th Nov 2019, 9:50 AM
Satya Chaitanya Yerninti
Satya Chaitanya Yerninti - avatar