-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdev.py
More file actions
35 lines (28 loc) · 928 Bytes
/
dev.py
File metadata and controls
35 lines (28 loc) · 928 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#varibles in python
# first_name = "John"
# last_name = "Doe"
# age = 35
# is_new = True
# country = "USA"
# skills = ["Python", "JavaScript", "NodeJS", "ReactJS"]
# person = {"first_name": "John", "last_name": "Doe", "age": 35, "is_new": True,
# "country": "USA", "skills": ["Python", "JavaScript", "NodeJS", "ReactJS"]}
# print("first Name:", first_name)
# print("First name length:", len(first_name))
# print("Last Name:", last_name)
# print("Age:", age)
# print("Is New?:", is_new)
# print("Country:", country)
# print("Skills:", skills)
# print("Person:", person)
# first_name = input("Enter your first name: ")
# last_name = input("Enter your last name: ")
# age = input("Enter your age: ")
# print("First Name:", first_name)
# print("Last Name:", last_name)
# print("Age:", age)
name = input("Enter a name: ")
if name == "kenny":
print("Contraseya correcta")
else:
print("Contraseya incorrecta")