0
Can any one tell me how to solve the code levle up in python
Its in charter 3 pls any oneš„š¢š¢š¢šš
3 Answers
+ 5
Learn the course -> practice -> making projects basic to advance
These are steps for level up in coding š
+ 4
Yes, as Sakshi said you must have to first learn and practice, there is no shortcut for leveling up.
You can ask your doubts at the community.
+ 2
You need to output 'True' if the score is greater than 100:
score = int(input())
# What is missing in the print statement?
print( > 100 )
Here are boolean examples:
print(5>4) #True
print(5<4) #False