- Comments can be used to explain Python code.
- Comments can be used to make the code more readable.
- Comments can be used to prevent execution when testing code.
- PHP IndentationThis file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
if 5 > 2: print("Five is greater than two!") These will give errors : if 5 > 2: print("Five is greater than two!") if 5 > 2: print("Five is greater than two!") print("Five is greater than two!") Again it is succesful as no of spaces is equal here i.e 1 : if 5 > 2: print("Five is greater than two!") if 5 > 2: print("Five is greater than two!") - PHP Variables
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode characters
eng=92; hindi=89; maths=99; sci=99; sst=85; sum=0; avg=0; sum=eng+hindi+maths+sci+sst; avg=sum/5; print("Final Marks ="); print(sum); print("Avg Marks ="); print(avg); if avg>90 print ( "Excellent " ); else print (" Good " );
- PHP Data Types
- PHP Number
- PHP Casting
- PHP Strings
- PHP Boolean
- PHP Operator
- PHP Lists pm pppp
- PHP Tuples
- PHP Set
- PHP Dictionary
- PHP If..Else...
- PHP While
- PHP For
- PHP Functions
- PHP Lambda
- PHP Arrays
- PHP Class/Objects
- PHP Inheritence
- PHP Iterators
- PHP Scope
- PHP Modules
- PHP Dates
- PHP JSON
- PHP Regex
- PHP PIP
- PHP Try...Except
- PHP User Inputs
- PHP String Formatting
numpy_intro
No comments:
Post a Comment