- Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstring_python.py
More file actions
Latest commit
34 lines (24 loc) · 571 Bytes
/
Copy pathstring_python.py
File metadata and controls
34 lines (24 loc) · 571 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
# -*- coding: utf-8 -*-
"""
Created on Fri Jul 16 01:51:29 2021
@author: mjach
"""
name='mohammed'
my_name="chowdhury"
print('My name is', name+' '+my_name)
#greeting = 'Hi it\'s Mohammed'
greeting="Hi it's Mohammed"
print(greeting)
long_message=""" aaaaaaaaaaaaa bbbbbbbbbbbbbb.
cccccccccccc
"""
print(long_message)
my_name='Mohammed'
greeting=f'Hi , {my_name}'
print(greeting)
#my_name = "Mohammed'
#my_name = 'mohammed'
age=27
my_age='27'
#print(my_name + ' ' + str(my_age))
print(age , int(my_age))