https://github.com/reislcb/reislcb
Config files for my GitHub profile.
https://github.com/reislcb/reislcb
config github-config
Last synced: 5 months ago
JSON representation
Config files for my GitHub profile.
- Host: GitHub
- URL: https://github.com/reislcb/reislcb
- Owner: ReisLcb
- Created: 2024-02-23T14:57:38.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-03-17T10:36:17.000Z (about 1 year ago)
- Last Synced: 2025-04-05T02:19:37.286Z (about 1 year ago)
- Topics: config, github-config
- Homepage: https://github.com/ReisLcb
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```python
def Reis(name = None, age = None, nacionality = None,):
print(name)
print(age)
print(nacionality)
Reis(name = "My name is Lenny", age = f"I'm {17} years old", nacionality = "I live in Brazil")
studiyng = [" Python", " Javascript", " C", " Assembly", " Typescript"]
interests = [" Play videogames", " Watch anime", " Development"]
print("\nStudying:")
for i in studiyng:
print(i)
print("\nInterests:")
for i in interests:
print(i)
```