-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHelloProject
More file actions
54 lines (51 loc) · 1.42 KB
/
HelloProject
File metadata and controls
54 lines (51 loc) · 1.42 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
print('\n')
print('''
\ \|||/
( 0 0 )
|-000-----------(_)-------------|
| |
| Hello!,This is Isha |
| |
|-------------------------000---|
|__| |__|
|| || ''')
print('I have just started to code in python')
print('Coding in python is good and I am going to use some ascii art to add some fun in programming')
print('Here\'s a picture of a Dog')
print('')
print('o____')
print(' ||||')
print('')
print(''' My favourite animals are Rabbit:
(\___/)
(=^.^=)
n_n ''')
print('''
Rabbit Loves Carrots:
^O///^ ''')
print('''I live in XYZ
__|-|__
| |
| ## |
| ## |_/----/
| ## | __ |
| ### | |__| |
|_##____|______| ''')
birthyr = int(input('Enter your birth year:'))
#or you can use birthyr = int(birthyr) to convert it into int
print('Your age in 2025 will be:',2025- birthyr )
print('Below are some more words and arts:')
print('')
print('ha' *4 + '!'*10)
print('')
print('Ba'+'na'*2)
print('')
print('It\'s a scarf')
print('~~~~'+'~#'*10 + '~~~~~')
print('~~~~'+'#~'*10 + '~~~~~')
print('')
print('Here\'s a wave')
print('/\ ' * 10)
print(' \/'*10)
print(' ')
print('BYE'*2)