Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#50 - python #7525

Merged
merged 59 commits into from
Jan 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
59 commits
Select commit Hold shift + click to select a range
2a32969
#37 - javascript
duendeintemporal Dec 28, 2024
6054f0b
#38 - javascript
duendeintemporal Dec 28, 2024
fb9a280
#44 - javascript
duendeintemporal Dec 28, 2024
63d8ab1
#44 - javascript
duendeintemporal Dec 28, 2024
d719f90
#45 - javascript
duendeintemporal Dec 28, 2024
a224d41
#46 - javascript
duendeintemporal Dec 28, 2024
a385131
#00 - python
duendeintemporal Dec 28, 2024
2fead8a
#01 - python
duendeintemporal Dec 28, 2024
7a2926e
#02 - python
duendeintemporal Dec 28, 2024
34c500d
#03 - python
duendeintemporal Dec 28, 2024
efd42bd
#04 - python
duendeintemporal Dec 28, 2024
b1aa3cd
#05 - python
duendeintemporal Dec 28, 2024
5ba875f
#06 - python
duendeintemporal Dec 28, 2024
2544f04
#07 - python
duendeintemporal Dec 28, 2024
c13323e
#08 - python
duendeintemporal Dec 28, 2024
9af7f1e
#03 - python
duendeintemporal Dec 28, 2024
f4473d1
#09 - python
duendeintemporal Dec 28, 2024
fa6d270
#10 - python
duendeintemporal Dec 28, 2024
8c221e2
#11 - python
duendeintemporal Dec 28, 2024
425f693
#12 - python
duendeintemporal Dec 28, 2024
7ed94b7
#13 - python
duendeintemporal Dec 28, 2024
33a3240
#14 - python
duendeintemporal Dec 28, 2024
8a3b5b6
#15 - python
duendeintemporal Dec 28, 2024
cf08987
#16 - python
duendeintemporal Dec 28, 2024
28b7b8b
#17 - python
duendeintemporal Dec 28, 2024
0e0e0d2
#18 - python
duendeintemporal Dec 28, 2024
9e18611
#19 - python
duendeintemporal Dec 28, 2024
0858cbc
#20 - python
duendeintemporal Dec 28, 2024
3dc6075
#21 - python
duendeintemporal Dec 28, 2024
fe7c955
#22 - python
duendeintemporal Dec 28, 2024
59e7fea
#23 - python
duendeintemporal Dec 28, 2024
1a73eca
#24 - python
duendeintemporal Dec 28, 2024
96a5c59
#25 - python
duendeintemporal Dec 28, 2024
7f15397
#26 - python
duendeintemporal Dec 28, 2024
872fb2c
#27 - python
duendeintemporal Dec 28, 2024
c9fe7d1
#28 - python
duendeintemporal Dec 28, 2024
32ff64e
#29 - python
duendeintemporal Dec 28, 2024
4d97515
#30 - python
duendeintemporal Dec 28, 2024
7ee69c6
#31 - python
duendeintemporal Dec 28, 2024
d6b2a70
#32 - python
duendeintemporal Dec 28, 2024
f829abe
#33 - python
duendeintemporal Dec 28, 2024
fb3b4f2
#34 - python
duendeintemporal Dec 28, 2024
87adc5c
#35 - python
duendeintemporal Dec 28, 2024
f5d05e8
#36 - python
duendeintemporal Dec 28, 2024
c49a374
#37 - python
duendeintemporal Dec 28, 2024
e491337
#38 - python
duendeintemporal Dec 28, 2024
6867359
#39 - python
duendeintemporal Dec 28, 2024
3f2e8cc
#40 - python
duendeintemporal Dec 28, 2024
4881e7a
#41 - python
duendeintemporal Dec 28, 2024
4d8e04e
#42 - python
duendeintemporal Dec 28, 2024
4635b34
#43 - python
duendeintemporal Dec 28, 2024
ffdcd91
#44 - python
duendeintemporal Dec 28, 2024
79d5be6
#45 - python
duendeintemporal Dec 28, 2024
6eece3a
#46 - python
duendeintemporal Dec 28, 2024
1c16e27
#47 - python
duendeintemporal Dec 28, 2024
8b85dfe
#48 - python
duendeintemporal Dec 28, 2024
fb47f91
#49 - python
duendeintemporal Dec 28, 2024
277c3e4
#50 - python
duendeintemporal Dec 28, 2024
cd0f78e
#42 - python
duendeintemporal Dec 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Documentación https://www.python.org/
#Exercise 0 rutaparaprogramadores

#one line comment
'''
multi
lines comment

'''
"""
multi line
comment

"""
lenguage = 'RUST'
lenguage = 'PYTHON'

print(lenguage) #Print: Python

my_int = 4
my_float = 4.8
my_string = 'Oh Boy!!'
my_bool = False
my_bool = not my_bool
my_null = None

print(my_int) # Print: 4
print(type(my_int)) # Print: class int
print(my_float) # Print: 4.8
print(type(my_float)) # Print: class float
print(my_string) # Print: Oh Boy!!
print(type(my_string)) # Print: class str
print(my_bool) # Print: class bool
print(type(my_bool)) # Print: True
print(my_null) # Print: None
print(type(my_null)) # Print: class NoneType




Loading