Quick actions

cmd+k|ctrl+k

Navigation

Languages

External excercise 1a

Snippet info

Language

Python

Visibility

public

Author

xuandieu.fetel

Created

2016-09-20T07:42:38Z

Updated

2016-09-24T15:21:52Z

sss = "Python is intended to be a highly readable language"
maxstr = 0
smax = ''
for i in sss:
    if i == ' ':
        continue
    if sss.count(i) > maxstr:
        maxstr = sss.count(i)
        smax = i
        
print('Ky tu xuat hien nhieu nhat la: ', smax, 'voi so lan la: ', maxstr)
INFO