-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpracticesheet.py
More file actions
60 lines (46 loc) · 1.29 KB
/
Copy pathpracticesheet.py
File metadata and controls
60 lines (46 loc) · 1.29 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
## Question1
"""name = input("Please tell your name")
print("welcome",name)
## Question 2
age = input("please tell you age")
print(f"you are {age} years old")
## Question 3
city = input("Enter you city")
print("I live in " ,city )
## Question4
color = input("enter favourite color")
print("my favourite color is", color)
##Questuion 5
name1 = input("enter first name ")
name2 = input("enter last name")
print("full name:",name1,name2)
### question 6
number = input("enter phone number")
print("my phone number is",number)
###Question7
name = input("enter school name")
print("I study at ",name)
###Question 8
food = input("enter favourite food")
print("I love eating",food)
### Question 9
country = input("enter your city name")
print("i am from ",country)
##question 10
name = input("enter your pet's name")
print(" My pet's name is", name)"""
##Question 11
subject = input("enter your favourite subject")
print("my favourite subjest is",subject)
##Question 12
name = input("enter your friend's name ")
print(f"My best friend name is {name}")
###Question 13
hobby = input("enter your hobby")
print(f"i enjoy {hobby} in my free time")
##Question 14
email = input("enter your email")
print(f"your email is", email)
##Question 15
movie = input("enter your favourite movie")
print(f"My favourite movie is{movie}")