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
| Cars: | |
| - BMW: | |
| mph: 120 | |
| price: 50000 | |
| electric: No | |
| - Tesla: | |
| mph: 110 | |
| price: 45000 | |
| electric: Yes |
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
| # Enclose it in square brackets | |
| bayarea: [sanfrancisco,paloalto,redwoodcity] | |
| southbay: [sanjose,santaclara,sunnyvale] |
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
| bayarea: | |
| - sanfrancisco | |
| - paloalto | |
| - redwoodcity | |
| southbay: | |
| - sanjose | |
| - santaclara | |
| - sunnyvale |
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
| canonical: 2001-12-15T02:59:43.1Z | |
| valid iso8601: 2001-12-14t21:59:43.10-05:00 | |
| space separated: 2001-12-14 21:59:43.10 -5 | |
| no time zone (Z): 2001-12-15 2:59:43.10 | |
| date (00:00:00Z): 2002-12-14 |
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
| age: !!int 30 | |
| name: !!str Martin | |
| float: !!float 990.00 |
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
| # This is single line comment. | |
| # This is first multi-line comment | |
| # First line comment | |
| # Second line comment | |
| #Comment can start any where in the line | |
| name: Martin # Employee Name |
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
| age: 35 | |
| name: Thomas | |
| integer: 25 | |
| string: "25" | |
| float: 25.0 | |
| boolean: true |
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
| # An employee record | |
| #name is the key | |
| # The value is the Martin | |
| # After the ':' there should be space | |
| name: Martin |
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
| # An employee record | |
| #name is the key | |
| # The value is the Martin D'vloper | |
| # After the ':' there should be space | |
| name: Martin D'vloper |
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
| orig_func(7,9,11) |