This file contains hidden or 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
| import sys | |
| import matplotlib | |
| matplotlib.use('Agg') | |
| import matplotlib.pyplot as plt | |
| import numpy as np | |
| ypoints = np.array([5, 8, 1, 17]) | |
| plt.plot(ypoints, linestyle = 'solid') |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <?php | |
| $color = "orange"; | |
| echo "My car is " . $color . "<br>"; | |
| echo "My planet is " . $COLOR . "<br>"; | |
| echo "My house is " . $coLOR . "<br>"; | |
| ?> |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <?php | |
| ECHO "Hello World!<br>"; | |
| echo "Hi World!<br>"; | |
| EcHo "Hello Mars!<br>"; | |
| ?> |
This file contains hidden or 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
| <!DOCTYPE html> | |
| <html> | |
| <body> | |
| <?php | |
| echo "My first PHP code!"; | |
| ?> | |
| </body> | |
| </html> |